mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-21 19:51:04 +00:00
24 lines
443 B
C
24 lines
443 B
C
|
|
||
|
class idCameraPoint : public idEntity
|
||
|
{
|
||
|
public:
|
||
|
CLASS_PROTOTYPE( idCameraPoint );
|
||
|
|
||
|
void Spawn( void );
|
||
|
void Save( idSaveGame *savefile ) const;
|
||
|
void Restore( idRestoreGame *savefile );
|
||
|
|
||
|
//virtual void Think( void );
|
||
|
//virtual void Present( void );
|
||
|
|
||
|
bool snapped;
|
||
|
void SetSnapped();
|
||
|
void SetHover(int value);
|
||
|
|
||
|
private:
|
||
|
|
||
|
void Event_setcamerapointvisibility( int value);
|
||
|
idEntity * arrowModel;
|
||
|
|
||
|
};
|