This commit is contained in:
Paul 2001-06-04 14:54:48 +00:00
parent 584b71661f
commit 295f83892c
2 changed files with 170 additions and 0 deletions

66
source/fma/fma.h Normal file
View file

@ -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 */