mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-17 19:23:51 +02:00
22 lines
437 B
C++
22 lines
437 B
C++
#ifndef __GAME_ALARMLIGHT_H__
|
|
#define __GAME_ALARMLIGHT_H__
|
|
|
|
class hhAlarmLight : public idLight {
|
|
CLASS_PROTOTYPE( hhAlarmLight );
|
|
|
|
public:
|
|
void Spawn();
|
|
void TurnOn();
|
|
void TurnOff();
|
|
void Save( idSaveGame *savefile ) const;
|
|
void Restore( idRestoreGame *savefile );
|
|
|
|
protected:
|
|
void SetParmState(float value6, float value7);
|
|
void Event_Activate(idEntity *activator);
|
|
|
|
bool bAlarmOn;
|
|
};
|
|
|
|
#endif
|