mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-12 23:44:11 +00:00
23 lines
443 B
C++
23 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;
|
|
|
|
};
|