diff options
Diffstat (limited to '')
-rw-r--r-- | source/World.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/World.h b/source/World.h index 21869bd41..fe339ea61 100644 --- a/source/World.h +++ b/source/World.h @@ -66,6 +66,19 @@ public: dimEnd = 1, } ; + // tolua_end + + /// A simple RAII locker for the chunkmap - locks the chunkmap in its constructor, unlocks it in the destructor + class cLock : + public cCSLock + { + typedef cCSLock super; + public: + cLock(cWorld & a_World); + } ; + + // tolua_begin + static const char * GetClassStatic(void) { return "cWorld"; |