This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
#ifndef ROBLOXINFO_H
#define ROBLOXINFO_H
#include <iostream>
#include "rbx/Debug.h"
class RobloxInfo
{
public:
static RobloxInfo& getRobloxInfo()
{
static RobloxInfo robloxInfo;
return robloxInfo;
}
std::string getAssetFolderPath()
{
if(assetFolderPath.empty())
RBXASSERT("Asset Path is not Set");
return assetFolderPath;
}
void setAssetFolderPath(std::string assetPath)
{
assetFolderPath = assetPath;
}
private:
RobloxInfo() {};
RobloxInfo(RobloxInfo const&);
void operator=(RobloxInfo const&);
std::string assetFolderPath;
};
#endif // ROBLOXINFO_H