quadrilateralcowboy/d3xp/cybervendor.h

28 lines
457 B
C
Raw Permalink Normal View History

2020-06-12 21:06:25 +00:00
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;
};