SBSPSS/source/paul/sndtest.h

72 lines
1.4 KiB
C
Raw Normal View History

2001-07-19 20:47:40 +02:00
/*=========================================================================
2001-07-19 21:13:21 +02:00
sndtest.h
2001-07-19 20:47:40 +02:00
Author: PKG
Created:
Project: Spongebob
Purpose: Scene selection thingy..
Copyright (c) 2000 Climax Development Ltd
===========================================================================*/
2001-07-19 21:13:21 +02:00
#ifndef __PAUL_SNDTEST_H__
#define __PAUL_SNDTEST_H__
2001-07-19 20:47:40 +02:00
/*----------------------------------------------------------------------
Includes
-------- */
#ifndef __SYSTEM_GSTATE_H__
#include "system\gstate.h"
#endif
/* Std Lib
------- */
/*----------------------------------------------------------------------
Tyepdefs && Defines
------------------- */
/*----------------------------------------------------------------------
Structure defintions
-------------------- */
2001-07-19 21:13:21 +02:00
class CSceneSoundTest : public CScene
2001-07-19 20:47:40 +02:00
{
public:
void init();
void shutdown();
void render();
void think(int _frames);
int readyToShutdown();
2001-07-19 21:13:21 +02:00
char *getSceneName() {return"SoundTest";}
2001-07-19 20:47:40 +02:00
private:
2001-07-19 21:13:21 +02:00
class ScalableFontBank *m_font;
2001-07-19 20:47:40 +02:00
};
/*----------------------------------------------------------------------
Globals
------- */
2001-07-19 21:13:21 +02:00
extern CSceneSoundTest SoundTestScene;
2001-07-19 20:47:40 +02:00
/*----------------------------------------------------------------------
Functions
--------- */
/*---------------------------------------------------------------------- */
2001-07-19 21:13:21 +02:00
#endif /* __PAUL_SNDTEST_H__ */
2001-07-19 20:47:40 +02:00
/*===========================================================================
end */