Files
DoomRTX/neo/prey/Prey/game_light.h
T
2026-05-05 15:01:01 -07:00

25 lines
461 B
C++

#ifndef __HH_GAME_LIGHT_H
#define __HH_GAME_LIGHT_H
/*
===============================================================================
hhLight
===============================================================================
*/
class hhLight : public idLight {
CLASS_PROTOTYPE( hhLight );
public:
void SetLightCenter( idVec3 center );
void StartAltSound();
protected:
void Event_SetTargetHandles( void );
void Event_StartAltMode();
};
#endif