diff options
Diffstat (limited to '')
-rw-r--r-- | src/Plugin.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Plugin.hpp b/src/Plugin.hpp new file mode 100644 index 0000000..a5f75e1 --- /dev/null +++ b/src/Plugin.hpp @@ -0,0 +1,11 @@ +#pragma once + +#include <string> + +namespace PluginSystem { + void Init(); + + void Execute(const std::string &luaCode); + + void CallOnChangeState(std::string newState); +}
\ No newline at end of file |