lua_FontText.h 286 B

12345678910111213141516
  1. #ifndef LUA_FONTTEXT_H_
  2. #define LUA_FONTTEXT_H_
  3. namespace gameplay
  4. {
  5. // Lua bindings for Font::Text.
  6. int lua_FontText__gc(lua_State* state);
  7. int lua_FontText__init(lua_State* state);
  8. int lua_FontText_getText(lua_State* state);
  9. void luaRegister_FontText();
  10. }
  11. #endif