mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-10 06:41:36 +00:00
28 lines
457 B
C
28 lines
457 B
C
|
|
||
|
class idCybervendor : public idStaticEntity
|
||
|
{
|
||
|
public:
|
||
|
CLASS_PROTOTYPE( idCybervendor );
|
||
|
|
||
|
void Spawn( void );
|
||
|
void Save( idSaveGame *savefile ) const;
|
||
|
void Restore( idRestoreGame *savefile );
|
||
|
virtual void Think( void );
|
||
|
void OnFrob( );
|
||
|
|
||
|
private:
|
||
|
|
||
|
int state;
|
||
|
int nextUpdate;
|
||
|
int lerpStart;
|
||
|
int lerpEnd;
|
||
|
|
||
|
idVec3 posStart;
|
||
|
idVec3 posEnd;
|
||
|
|
||
|
idVec3 angStart;
|
||
|
idVec3 angEnd;
|
||
|
|
||
|
int count;
|
||
|
};
|