diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-02 17:19:54 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-02 17:19:54 +1000 |
commit | 2386a9534289baf73ce299f33e110f612ff55e38 (patch) | |
tree | 19dca601d4bb7fa0bae23944485ad87024a034ef /source/game/scripting/StarInputLuaBindings.hpp | |
parent | 73841ee041b8b52f5fde16dc272228704697bcb8 (diff) |
Input Binding support
Diffstat (limited to 'source/game/scripting/StarInputLuaBindings.hpp')
-rw-r--r-- | source/game/scripting/StarInputLuaBindings.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source/game/scripting/StarInputLuaBindings.hpp b/source/game/scripting/StarInputLuaBindings.hpp new file mode 100644 index 0000000..f0c1f4d --- /dev/null +++ b/source/game/scripting/StarInputLuaBindings.hpp @@ -0,0 +1,17 @@ +#ifndef STAR_INPUT_LUA_BINDINGS_HPP +#define STAR_INPUT_LUA_BINDINGS_HPP + +#include "StarGameTypes.hpp" +#include "StarLua.hpp" + +namespace Star { + +STAR_CLASS(Input); + +namespace LuaBindings { + LuaCallbacks makeInputCallbacks(); +} + +} + +#endif |