This commit is contained in:
Paul 2001-06-25 18:44:59 +00:00
parent 6af6ac480f
commit 13fbd0d118
2 changed files with 230 additions and 0 deletions

70
source/paul/animtest.h Normal file
View file

@ -0,0 +1,70 @@
/*=========================================================================
animtest.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PAUL_ANIMTEST_H__
#define __PAUL_ANIMTEST_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __SYSTEM_GSTATE_H__
#include "system\gstate.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CAnimTestScene : public CScene
{
public:
void init();
void shutdown() {}
void render();
void think(int _frames);
int readyToShutdown() {return false;}
char *getSceneName() {return"AnimTest";}
private:
class FontBank *m_fontBank;
};
/*----------------------------------------------------------------------
Globals
------- */
extern CPartyScene PartyScene;
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PAUL_ANIMTEST_H__ */
/*===========================================================================
end */