mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-09 22:31:33 +00:00
21 lines
346 B
C
21 lines
346 B
C
|
|
||
|
class idCommentaryNode : public idStaticEntity
|
||
|
{
|
||
|
public:
|
||
|
CLASS_PROTOTYPE( idCommentaryNode );
|
||
|
|
||
|
void Spawn( void );
|
||
|
|
||
|
void Save( idSaveGame *savefile ) const;
|
||
|
void Restore( idRestoreGame *savefile );
|
||
|
|
||
|
virtual void Think( void );
|
||
|
|
||
|
void OnFrob( idEntity* activator );
|
||
|
|
||
|
private:
|
||
|
|
||
|
bool frobbed;
|
||
|
idVec3 orgOrigin;
|
||
|
};
|