GlobalLuaFunctions.h 284 B

1234567891011
  1. #pragma once
  2. typedef struct lua_State lua_State;
  3. namespace Rml {
  4. namespace Lua {
  5. void OverrideLuaGlobalFunctions(lua_State* L);
  6. // overrides pairs and ipairs to respect __pairs and __ipairs metamethods
  7. // overrdes print to print to the console
  8. } // namespace Lua
  9. } // namespace Rml