mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-08 06:17:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
#ifndef ROBLOXUTILITIES_H
|
||||
#define ROBLOXUTILITIES_H
|
||||
|
||||
#include "rbx/rbxTime.h"
|
||||
|
||||
class RobloxUtilities
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
static RobloxUtilities& getRobloxUtilities()
|
||||
{
|
||||
|
||||
static RobloxUtilities robloxUtilities;
|
||||
return robloxUtilities;
|
||||
}
|
||||
|
||||
RBX::Timer<RBX::Time::Fast>& getGameTimer() { return gameTimer; };
|
||||
|
||||
|
||||
private:
|
||||
RobloxUtilities() {};
|
||||
RobloxUtilities(RobloxUtilities const&);
|
||||
void operator=(RobloxUtilities const&);
|
||||
|
||||
RBX::Timer<RBX::Time::Fast> gameTimer;
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif // ROBLOXUTILITIES_H
|
||||
Reference in New Issue
Block a user