diff options
Diffstat (limited to 'src/lua/common/je_lua_callback.h')
-rw-r--r-- | src/lua/common/je_lua_callback.h | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/src/lua/common/je_lua_callback.h b/src/lua/common/je_lua_callback.h deleted file mode 100644 index 0467e45..0000000 --- a/src/lua/common/je_lua_callback.h +++ /dev/null @@ -1,66 +0,0 @@ -#ifndef __JIN_COMMON_FUNCTION_H -#define __JIN_COMMON_FUNCTION_H - -#include <vector> - -#include "libjin/jin.h" -#include "je_lua_reference.h" - -namespace JinEngine -{ - namespace Lua - { - - /// - /// - /// - class LuaCallback - { - public: - /// - /// - /// - LuaCallback(lua_State* L); - - /// - /// - /// - ~LuaCallback(); - - /// - /// - /// - void setFunc(int i); - - /// - /// - /// - void pushParam(int i); - - /// - /// - /// - void call(); - - private: - /// - /// - /// - LuaRef* mLuaFunc; - - /// - /// - /// - std::vector<LuaRef*> mParams; - - /// - /// - /// - lua_State* const mL; - - }; - - } // namespace Lua -} // namespace JinEngine - -#endif // __JIN_COMMON_REFERENCE_H
\ No newline at end of file |