diff options
Diffstat (limited to '')
-rw-r--r-- | source/cRoot.h | 5 |
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); |