PGE Engine
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
luaclass_level_lvl_player.h
1 #ifndef LUACLASS_CORE_LVL_PLAYER_H
2 #define LUACLASS_CORE_LVL_PLAYER_H
3 
4 #include <scenes/level/lvl_player.h>
5 
6 #include <luabind/luabind.hpp>
7 #include <lua_inclues/lua.hpp>
8 
9 class Binding_Level_ClassWrapper_LVL_Player : public LVL_Player, public luabind::wrap_base
10 {
11 public:
14 
15  virtual void lua_onLoop();
16  static void def_lua_onLoop(LVL_Player* base) { base->LVL_Player::lua_onLoop(); }
17 
18  static luabind::scope bindToLua();
19 private:
20  luabind::detail::wrap_access mself;
21 };
22 
23 #endif // LUACLASS_CORE_LVL_PLAYER_H
Definition: lvl_player.h:39
Definition: luaclass_level_lvl_player.h:9