This commit is contained in:
Paul 2001-04-24 23:14:50 +00:00
parent 51d9acda6e
commit 9cf163dbea
3 changed files with 217 additions and 19 deletions

View file

@ -22,6 +22,10 @@
#include "system\gstate.h"
#endif
#ifndef _GLOBAL_HEADER_
#include "system\global.h" // Doh.. just for DVECTOR :/
#endif
/* Std Lib
------- */
@ -47,6 +51,10 @@ public:
private:
void copyImageToScreen(int _file,int _x,int _y,int _w,int _h);
int isLevelOpen(int _chapter,int _level);
int getSpatulaCollectedCount(int _chapter,int _level);
int getSpatulaAvailableCount(int _chapter,int _level);
int hasQuestItemBeenCollected(int _chapter,int _level);
class FontBank *m_font;
@ -54,6 +62,15 @@ private:
char *m_screenImage;
class CGUIControlFrame *m_guiFrame;
class SpriteBank *m_spriteBank;
int m_currentChapterSelection;
int m_currentLevelSelection;
DVECTOR m_pointerPos;
DVECTOR m_pointerTarget;
int m_pointerSin;
};