diff options
author | clyne <clyne@bitgloo.com> | 2019-09-25 14:35:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-25 14:35:10 -0400 |
commit | 5de39474dd9c17cc7f09015f291769fbe3fd5931 (patch) | |
tree | 73de6ae8aad4418cd19d55d5b468a20b404446ec /src/script.hpp | |
parent | ec0ab456cf869f2daa6dea41158c54da745626d8 (diff) | |
parent | 1703f84121f18277c2a9bd671e204730c131c102 (diff) |
Merge pull request #2 from tcsullivan/font-support
Font support
Diffstat (limited to 'src/script.hpp')
-rw-r--r-- | src/script.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/script.hpp b/src/script.hpp index 87027d5..0ac9e63 100644 --- a/src/script.hpp +++ b/src/script.hpp @@ -47,6 +47,7 @@ private: * interactions between C and Lua */ sol::state lua; + sol::table game; entityx::EntityManager& manager; @@ -102,6 +103,11 @@ public: * Contains all calls that export components/functions to lua. */ void scriptExport(void); + + template<typename F> + void addToGameNamespace(const std::string& name, F func) { + game.set_function(name, func); + } }; #endif // SYSTEM_SCRIPT_HPP_ |