summaryrefslogtreecommitdiffstats
path: root/source/cRoot.h
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-08-22 13:22:26 +0200
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-08-22 13:22:26 +0200
commite086b931ea7ab329a1142ec26c008cdb22fb065c (patch)
tree2025e2b5c3ab5a80ac9b8264664882c30fc209ad /source/cRoot.h
parentNow the web server supports %20 spaces in URLs (diff)
downloadcuberite-e086b931ea7ab329a1142ec26c008cdb22fb065c.tar
cuberite-e086b931ea7ab329a1142ec26c008cdb22fb065c.tar.gz
cuberite-e086b931ea7ab329a1142ec26c008cdb22fb065c.tar.bz2
cuberite-e086b931ea7ab329a1142ec26c008cdb22fb065c.tar.lz
cuberite-e086b931ea7ab329a1142ec26c008cdb22fb065c.tar.xz
cuberite-e086b931ea7ab329a1142ec26c008cdb22fb065c.tar.zst
cuberite-e086b931ea7ab329a1142ec26c008cdb22fb065c.zip
Diffstat (limited to '')
-rw-r--r--source/cRoot.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/cRoot.h b/source/cRoot.h
index a426207e8..b65c1d91d 100644
--- a/source/cRoot.h
+++ b/source/cRoot.h
@@ -102,8 +102,9 @@ private:
bool m_bStop;
bool m_bRestart;
- struct sRootState;
- sRootState* m_pState;
+ typedef std::map< AString, cWorld* > WorldMap;
+ cWorld* m_pDefaultWorld;
+ WorldMap m_WorldsByName;
cThread* m_InputThread;
static void InputThread(void* a_Params);