lua_Platform.h 250 B

123456789101112131415
  1. #ifndef LUA_PLATFORM_H_
  2. #define LUA_PLATFORM_H_
  3. namespace gameplay
  4. {
  5. // Lua bindings for Platform.
  6. int lua_Platform__gc(lua_State* state);
  7. int lua_Platform_enterMessagePump(lua_State* state);
  8. void luaRegister_Platform();
  9. }
  10. #endif