SBSPSS/source/paul/paul.h
2000-10-26 16:50:54 +00:00

62 lines
1.3 KiB
C++

/*=========================================================================
paul.h
Author: PKG
Created:
Project: Spongebob
Purpose:
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
#ifndef __PAUL_PAUL_H__
#define __PAUL_PAUL_H__
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __SYSTEM_GSTATE_H__
#include "system\gstate.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
class CPaulScene : public CScene
{
public:
void init();
void shutdown();
void render();
void think(int _frames);
int readyToShutdown() {return false;}
char *getSceneName() {return"PaulsScene";}
};
/*----------------------------------------------------------------------
Globals
------- */
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
#endif /* __PAUL_PAUL_H__ */
/*===========================================================================
end */