2022-07-06 11:48:40 -04:00
|
|
|
#pragma once
|
|
|
|
|
2023-03-05 08:14:47 -05:00
|
|
|
namespace Components::GSC
|
2022-07-06 11:48:40 -04:00
|
|
|
{
|
|
|
|
class ScriptStorage : public Component
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScriptStorage();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static std::unordered_map<std::string, std::string> Data;
|
|
|
|
|
|
|
|
static void AddScriptFunctions();
|
|
|
|
};
|
|
|
|
}
|