mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 05:57:47 +00:00
17 lines
206 B
C++
17 lines
206 B
C++
#ifndef RBX_TIME_H
|
|
#define RBX_TIME_H
|
|
#include "G3D/G3DGameUnits.h"
|
|
|
|
namespace RBX
|
|
{
|
|
class RbxTime
|
|
{
|
|
public:
|
|
static G3D::RealTime getTick();
|
|
|
|
private:
|
|
static G3D::RealTime m_startTime;
|
|
};
|
|
}
|
|
|
|
#endif |