diff options
Diffstat (limited to 'source/3rd-party/Luax/luax_state.cpp')
-rw-r--r-- | source/3rd-party/Luax/luax_state.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source/3rd-party/Luax/luax_state.cpp b/source/3rd-party/Luax/luax_state.cpp index 8c30c00..b7b89a3 100644 --- a/source/3rd-party/Luax/luax_state.cpp +++ b/source/3rd-party/Luax/luax_state.cpp @@ -151,6 +151,11 @@ namespace Luax lua_pushnumber(mState, (double)value); } + void LuaxState::Push(s64 value) + { + lua_pushinteger(mState, value); + } + void LuaxState::Push(uintptr value) { lua_pushlightuserdata(mState, (void*)value); |