singe/thirdparty/RmlUi/Source/Lua/GlobalLuaFunctions.h
2026-09-07 23:44:37 -05:00

11 lines
284 B
C++

#pragma once
typedef struct lua_State lua_State;
namespace Rml {
namespace Lua {
void OverrideLuaGlobalFunctions(lua_State* L);
// overrides pairs and ipairs to respect __pairs and __ipairs metamethods
// overrdes print to print to the console
} // namespace Lua
} // namespace Rml