diff options
author | madmaxoft <github@xoft.cz> | 2013-08-11 20:16:41 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-11 20:16:41 +0200 |
commit | 4c5590636cf4a311f03e735878557b1e7b3362dd (patch) | |
tree | cc74a43b0ab34481a7d972ed35beb20008bd390b /source/World.h | |
parent | Removed cServer::m_pState, dissolved into direct member variables. (diff) | |
download | cuberite-4c5590636cf4a311f03e735878557b1e7b3362dd.tar cuberite-4c5590636cf4a311f03e735878557b1e7b3362dd.tar.gz cuberite-4c5590636cf4a311f03e735878557b1e7b3362dd.tar.bz2 cuberite-4c5590636cf4a311f03e735878557b1e7b3362dd.tar.lz cuberite-4c5590636cf4a311f03e735878557b1e7b3362dd.tar.xz cuberite-4c5590636cf4a311f03e735878557b1e7b3362dd.tar.zst cuberite-4c5590636cf4a311f03e735878557b1e7b3362dd.zip |
Diffstat (limited to '')
-rw-r--r-- | source/World.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source/World.h b/source/World.h index 1ae56a410..a12a9e40e 100644 --- a/source/World.h +++ b/source/World.h @@ -477,8 +477,12 @@ public: void InitializeSpawn(void); + /// Starts threads that belong to this world + void Start(void); + /// Stops threads that belong to this world (part of deinit) - void StopThreads(void); + void Stop(void); + void TickQueuedBlocks(float a_Dt); struct BlockTickQueueItem @@ -548,6 +552,9 @@ private: AString m_WorldName; AString m_IniFileName; + /// Name of the storage schema used to load and save chunks + AString m_StorageSchema; + /// The dimension of the world, used by the client to provide correct lighting scheme eDimension m_Dimension; |