summaryrefslogtreecommitdiffstats
path: root/src/Bindings/LuaState.h
diff options
context:
space:
mode:
authorNiels Breuker <niels.breuker@hotmail.nl>2022-10-02 12:54:47 +0200
committerNiels Breuker <niels.breuker@hotmail.nl>2022-10-02 12:54:47 +0200
commit64ff027e645208c1a64a6dbeb2d1540da9e718f8 (patch)
treee050669d8b1967cd1c82cac394cbbd44060b4036 /src/Bindings/LuaState.h
parentUpdate Core (diff)
downloadcuberite-64ff027e645208c1a64a6dbeb2d1540da9e718f8.tar
cuberite-64ff027e645208c1a64a6dbeb2d1540da9e718f8.tar.gz
cuberite-64ff027e645208c1a64a6dbeb2d1540da9e718f8.tar.bz2
cuberite-64ff027e645208c1a64a6dbeb2d1540da9e718f8.tar.lz
cuberite-64ff027e645208c1a64a6dbeb2d1540da9e718f8.tar.xz
cuberite-64ff027e645208c1a64a6dbeb2d1540da9e718f8.tar.zst
cuberite-64ff027e645208c1a64a6dbeb2d1540da9e718f8.zip
Diffstat (limited to 'src/Bindings/LuaState.h')
-rw-r--r--src/Bindings/LuaState.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Bindings/LuaState.h b/src/Bindings/LuaState.h
index d579369f0..6434bb625 100644
--- a/src/Bindings/LuaState.h
+++ b/src/Bindings/LuaState.h
@@ -624,12 +624,14 @@ public:
void Push(const cEntity * a_Entity);
void Push(cLuaServerHandle * a_ServerHandle);
void Push(cLuaTCPLink * a_TCPLink);
+ void Push(std::thread * a_Thread);
void Push(cLuaUDPEndpoint * a_UDPEndpoint);
void Push(double a_Value);
void Push(int a_Value);
void Push(long a_Value);
void Push(const UInt32 a_Value);
void Push(std::chrono::milliseconds a_time);
+ void Push(std::mutex * a_Mutex);
/** Pops the specified number of values off the top of the Lua stack. */
void Pop(int a_NumValuesToPop = 1);