This commit is contained in:
Paul 2000-11-24 00:00:10 +00:00
parent bf6c8fb784
commit 0f348a9638
8 changed files with 329 additions and 16 deletions

View file

@ -22,7 +22,7 @@
#include "gfx\prim.h"
#endif
#ifndef __FRONTEND_FRONTENTD_H__
#ifndef __FRONTEND_FRONTEND_H__
#include "frontend\frontend.h"
#endif
@ -78,9 +78,16 @@ private:
MODE__PRESS_START,
MODE__SELECT_OPTION,
MODE__START_GAME,
MODE__GOTO_OPTIONS,
MODE__GOTO_DEMO,
};
enum
{
DEMO_TIMEOUT_IN_SECONDS=30,
};
POLY_FT4 *prepareSeaPortionFT4(struct sFrameHdr *_fh,int _x,int _y,int _w,int _h,int _rgb);
void renderSeaSection(struct sFrameHdr *fh,int _x,int _y,int _w,int _h);
@ -96,6 +103,8 @@ private:
int m_startGameFlag;
int m_gotoOptionsFlag;
int m_demoTimeout;
};