Initial commit

This commit is contained in:
2025-12-17 16:47:48 +00:00
commit 13813f3363
4964 changed files with 1079753 additions and 0 deletions

17
engine/3d/src/RbxTime.hpp Normal file
View File

@@ -0,0 +1,17 @@
#ifndef AYA_TIME_H
#define AYA_TIME_H
#include "G3DGameUnits.hpp"
namespace Aya
{
class RbxTime
{
public:
static G3D::RealTime getTick();
private:
static G3D::RealTime m_startTime;
};
} // namespace Aya
#endif