diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-15 22:50:08 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-15 22:50:08 -0400 |
commit | 07b3ae994d0e68b5c266f5aa212024d5064847c2 (patch) | |
tree | b3e6b3d2de445f15ece9da67b4e18383c84a2a78 /include | |
parent | b709a392436d4ed17e214cd9e302ddbd23d71c21 (diff) |
scriptable attacks?
Diffstat (limited to 'include')
-rw-r--r-- | include/systems/lua.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/systems/lua.hpp b/include/systems/lua.hpp index 2df038a..1137308 100644 --- a/include/systems/lua.hpp +++ b/include/systems/lua.hpp @@ -44,11 +44,11 @@ public: lua_setglobal(state, name.c_str()); } + void operator()(const std::string& func = "update") const; void operator()(const std::string& func, std::vector<LuaVariable> vars) const; void operator()(const std::string& func, std::vector<double>& rets, std::vector<LuaVariable> vars) const; void operator()(std::vector<LuaVariable> vars) const; void operator()(std::vector<double>& rets, std::vector<LuaVariable> vars) const; - void operator()(const std::string& func = "update") const; }; class LuaSystem { |