mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-19 20:19:50 +02:00
Initial Prey Game integration support.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
// Copyright (C) 2004 Id Software, Inc.
|
||||
//
|
||||
|
||||
#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__ */
|
||||
Reference in New Issue
Block a user