This commit is contained in:
parent
51d9acda6e
commit
9cf163dbea
3 changed files with 217 additions and 19 deletions
|
@ -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;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue