summaryrefslogtreecommitdiff
path: root/source/3rd-party/Luax/luax_state.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-03-29 22:28:40 +0800
committerchai <chaifix@163.com>2019-03-29 22:28:40 +0800
commit157530b8b6e11efc5573d5a0db8987a440197aa1 (patch)
treef9df79c013885e13dc81e7046c9828037eb29e2e /source/3rd-party/Luax/luax_state.h
parente37b1dfd022bda4dfdcba243c0543c62c89db32f (diff)
*misc
Diffstat (limited to 'source/3rd-party/Luax/luax_state.h')
-rw-r--r--source/3rd-party/Luax/luax_state.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/source/3rd-party/Luax/luax_state.h b/source/3rd-party/Luax/luax_state.h
index dc3b79f..7c7d813 100644
--- a/source/3rd-party/Luax/luax_state.h
+++ b/source/3rd-party/Luax/luax_state.h
@@ -5,6 +5,7 @@
#include "luax_config.h"
#include "luax_reftable.h"
+#include "luax_globalstate.h"
namespace Luax
{
@@ -41,6 +42,10 @@ namespace Luax
///
inline lua_State* GetHandle() { return mState; };
+ global_State* GetGlobalState();
+
+ LuaxVM* GetVM();
+
//------------------------------------------------------------------------------//
void OpenLibs();
@@ -206,10 +211,7 @@ namespace Luax
void* operator &();
void* operator new(size_t size);
- //------------------------------------------------------------------------------//
-
lua_State* const mState;
-
};
//--------------------------------------------------------------------------------//