diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-10-26 15:07:39 +0200 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-10-26 15:07:39 +0200 |
commit | bcc1450ba930d991e9569d05810aa4aada68869d (patch) | |
tree | 7971111b5db3664dd4bda3d56e938c4c5affea44 /source/cRoot.h | |
parent | added simple code for server side item durabilty on tool items that have durabilty. need to add block destroyed durability modifier. (diff) | |
download | cuberite-bcc1450ba930d991e9569d05810aa4aada68869d.tar cuberite-bcc1450ba930d991e9569d05810aa4aada68869d.tar.gz cuberite-bcc1450ba930d991e9569d05810aa4aada68869d.tar.bz2 cuberite-bcc1450ba930d991e9569d05810aa4aada68869d.tar.lz cuberite-bcc1450ba930d991e9569d05810aa4aada68869d.tar.xz cuberite-bcc1450ba930d991e9569d05810aa4aada68869d.tar.zst cuberite-bcc1450ba930d991e9569d05810aa4aada68869d.zip |
Diffstat (limited to 'source/cRoot.h')
-rw-r--r-- | source/cRoot.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/cRoot.h b/source/cRoot.h index 0ba59ae93..95f2e236e 100644 --- a/source/cRoot.h +++ b/source/cRoot.h @@ -1,5 +1,6 @@ #pragma once
+class cThread;
class cMonsterConfig;
class cMCLogger;
class cGroupManager;
@@ -46,7 +47,8 @@ private: bool m_bStop;
bool m_bRestart;
- void* m_hInputThread;
+ cThread* m_InputThread;
+ static void InputThread(void* a_Params);
static cRoot* s_Root;
}; //tolua_export
\ No newline at end of file |