mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-20 20:50:58 +02:00
16 lines
273 B
C++
16 lines
273 B
C++
|
|
#ifndef __PREY_SPIRITSECRET_H__
|
|
#define __PREY_SPIRITSECRET_H__
|
|
|
|
class hhSpiritSecret : public idEntity {
|
|
public:
|
|
CLASS_PROTOTYPE( hhSpiritSecret );
|
|
|
|
void Spawn( void );
|
|
|
|
protected:
|
|
void Event_Activate( idEntity *activator );
|
|
};
|
|
|
|
#endif /* __PREY_SPIRITSECRET_H__ */
|