SBSPSS/source/paul/animtest.h
2001-06-25 18:44:59 +00:00

71 lines
1.4 KiB
C++

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