mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-10 23:18:08 +00:00
12 lines
284 B
C++
12 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
|