diff --git a/source/fma/fma.cpp b/source/fma/fma.cpp new file mode 100644 index 000000000..90aa0f1ef --- /dev/null +++ b/source/fma/fma.cpp @@ -0,0 +1,104 @@ +/*========================================================================= + + gameover.cpp + + Author: PKG + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2001 Climax Development Ltd + +===========================================================================*/ + + +/*---------------------------------------------------------------------- + Includes + -------- */ + +#include "fma\fma.h" + + +/* Std Lib + ------- */ + +/* Data + ---- */ + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +/*---------------------------------------------------------------------- + Function Prototypes + ------------------- */ + +/*---------------------------------------------------------------------- + Vars + ---- */ + +CFmaScene FmaScene; + + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CFmaScene::init() +{ +} + + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CFmaScene::shutdown() +{ +} + + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CFmaScene::render() +{ +} + + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +void CFmaScene::think(int _frames) +{ +} + + +/*---------------------------------------------------------------------- + Function: + Purpose: + Params: + Returns: + ---------------------------------------------------------------------- */ +int CFmaScene::readyToShutdown() +{ + return false; +} + + +/*=========================================================================== + end */ \ No newline at end of file diff --git a/source/fma/fma.h b/source/fma/fma.h new file mode 100644 index 000000000..f3dcfe318 --- /dev/null +++ b/source/fma/fma.h @@ -0,0 +1,66 @@ +/*========================================================================= + + fma.h + + Author: PKG + Created: + Project: Spongebob + Purpose: + + Copyright (c) 2001 Climax Development Ltd + +===========================================================================*/ + +#ifndef __FMA_FMA_H__ +#define __FMA_FMA_H__ + +/*---------------------------------------------------------------------- + Includes + -------- */ + +#ifndef __SYSTEM_GSTATE_H__ +#include "system\gstate.h" +#endif + + +/* Std Lib + ------- */ + +/*---------------------------------------------------------------------- + Tyepdefs && Defines + ------------------- */ + +/*---------------------------------------------------------------------- + Structure defintions + -------------------- */ + +class CFmaScene: public CScene +{ +public: + void init(); + void shutdown(); + void render(); + void think(int _frames); + int readyToShutdown(); + char *getSceneName() {return"FMA";} + +}; + + +/*---------------------------------------------------------------------- + Globals + ------- */ + +extern CFmaScene FmaScene; + + +/*---------------------------------------------------------------------- + Functions + --------- */ + +/*---------------------------------------------------------------------- */ + +#endif /* __FMA_FMA_H__ */ + +/*=========================================================================== + end */