From 4f73474887d6894284d5ccb2eb52dbe3f97148bf Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 21 Jun 2001 16:22:38 +0000 Subject: [PATCH] --- source/level/level.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/source/level/level.h b/source/level/level.h index 3d10e3cbf..c2769ff2a 100644 --- a/source/level/level.h +++ b/source/level/level.h @@ -39,9 +39,11 @@ public: static DVECTOR const &getCameraPos() {return MapPos;} static DVECTOR const &getPlayerSpawnPos() {return s_playerSpawnPos;} -static int getCurrentChapter() {return( LvlTable[s_globalLevelSelectThing].Chapter );} -static int getCurrentChapterLevel() {return( LvlTable[s_globalLevelSelectThing].Level);} -static int getTotalSpatCount() {return( LvlTable[s_globalLevelSelectThing].totalSpatCount);} +static int getCurrentChapter() {return LvlTable[s_globalLevelSelectThing].Chapter;} +static int getCurrentChapterLevel() {return LvlTable[s_globalLevelSelectThing].Level;} +static int getTotalSpatCount() {return LvlTable[s_globalLevelSelectThing].totalSpatCount;} +static int getChapterLoadingText() {return LvlTable[s_globalLevelSelectThing].ChapterLoadingText;} +static int getLevelLoadingText() {return LvlTable[s_globalLevelSelectThing].LevelLoadingText;} void destroyMapArea(DVECTOR const &Pos); void destroyMapTile(DVECTOR const &Pos);