home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar 2006 March
/
Gamestar_82_2006-03_dvd.iso
/
DVDStar
/
Editace
/
quake4_sdkv10.exe
/
source
/
game
/
WorldSpawn.h
< prev
Wrap
C/C++ Source or Header
|
2005-11-14
|
541b
|
29 lines
#ifndef __GAME_WORLDSPAWN_H__
#define __GAME_WORLDSPAWN_H__
/*
===============================================================================
World entity.
===============================================================================
*/
class idWorldspawn : public idEntity {
public:
CLASS_PROTOTYPE( idWorldspawn );
~idWorldspawn();
void Spawn( void );
void Save( idRestoreGame *savefile );
void Restore( idRestoreGame *savefile );
private:
void Event_Remove( void );
};
#endif /* !__GAME_WORLDSPAWN_H__ */