diff options
author | tycho <tycho@localhost> | 2015-03-21 18:17:26 +0100 |
---|---|---|
committer | tycho <tycho@localhost> | 2015-05-07 04:47:46 +0200 |
commit | 448df85e569e85e1b4da4eac685950273f30ae1f (patch) | |
tree | 045241fff430ae2ffe0b97d7151e44293ad76467 /src/Bindings/LuaState.h | |
parent | Merge pull request #1946 from SafwatHalaby/lean (diff) | |
download | cuberite-448df85e569e85e1b4da4eac685950273f30ae1f.tar cuberite-448df85e569e85e1b4da4eac685950273f30ae1f.tar.gz cuberite-448df85e569e85e1b4da4eac685950273f30ae1f.tar.bz2 cuberite-448df85e569e85e1b4da4eac685950273f30ae1f.tar.lz cuberite-448df85e569e85e1b4da4eac685950273f30ae1f.tar.xz cuberite-448df85e569e85e1b4da4eac685950273f30ae1f.tar.zst cuberite-448df85e569e85e1b4da4eac685950273f30ae1f.zip |
Diffstat (limited to 'src/Bindings/LuaState.h')
-rw-r--r-- | src/Bindings/LuaState.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Bindings/LuaState.h b/src/Bindings/LuaState.h index 6bedbf5ec..3f2e828f3 100644 --- a/src/Bindings/LuaState.h +++ b/src/Bindings/LuaState.h @@ -76,6 +76,7 @@ typedef cPluginManager * pPluginManager; typedef cRoot * pRoot; typedef cScoreboard * pScoreboard; typedef cWorld * pWorld; +typedef cClientHandle * pClientHandle; @@ -254,6 +255,7 @@ public: void GetStackValue(int a_StackPos, int & a_Value); void GetStackValue(int a_StackPos, pBlockArea & a_Value); void GetStackValue(int a_StackPos, pBoundingBox & a_Value); + void GetStackValue(int a_StackPos, pClientHandle & a_Value); void GetStackValue(int a_StackPos, pMapManager & a_Value); void GetStackValue(int a_StackPos, pPluginManager & a_Value); void GetStackValue(int a_StackPos, pRoot & a_Value); @@ -307,6 +309,10 @@ public: /** Returns true if the specified parameter on the stack is nil (indicating an end-of-parameters) */ bool CheckParamEnd(int a_Param); + bool IsParamUserType(int a_Param, AString a_UserType); + + bool IsParamNumber(int a_Param); + /** If the status is nonzero, prints the text on the top of Lua stack and returns true */ bool ReportErrors(int status); |