This commit is contained in:
Paul 2001-04-17 21:26:40 +00:00
parent 47369179ef
commit eabbdc0bee
2 changed files with 234 additions and 0 deletions

70
source/frontend/fmvthq.h Normal file
View file

@ -0,0 +1,70 @@
/*=========================================================================
fmvthq.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __FRONTEND_FMVTHQ_H__
#define __FRONTEND_FMVTHQ_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __FRONTEND_FRONTEND_H__
#include "frontend\frontend.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CFrontEndFMVTHQ : public CFrontEndMode
{
public:
void init();
void shutdown();
void select();
void unselect();
void render();
void think(int _frames);
int isReadyToExit();
CFrontEndScene::FrontEndMode getNextMode();
private:
int m_shuttingDown;
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __FRONTEND_FMVTHQ_H__ */
/*===========================================================================
end */