16 lines
222 B
C++
16 lines
222 B
C++
|
#pragma once
|
||
|
|
||
|
namespace Components
|
||
|
{
|
||
|
class ScriptStorage : public Component
|
||
|
{
|
||
|
public:
|
||
|
ScriptStorage();
|
||
|
|
||
|
private:
|
||
|
static std::unordered_map<std::string, std::string> Data;
|
||
|
|
||
|
static void AddScriptFunctions();
|
||
|
};
|
||
|
}
|