mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-10 06:41:36 +00:00
32 lines
423 B
C++
32 lines
423 B
C++
|
|
class idAnimloop : public idAnimated
|
|
{
|
|
public:
|
|
CLASS_PROTOTYPE( idAnimloop );
|
|
|
|
|
|
void Save( idSaveGame *savefile ) const;
|
|
void Restore( idRestoreGame *savefile );
|
|
|
|
|
|
//void Think( void );
|
|
void Spawn( void );
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
void Loopdone( void );
|
|
|
|
int blendFrames;
|
|
float randomtime;
|
|
float randomstart;
|
|
idStr animName;
|
|
|
|
bool active;
|
|
void loopsetactive(int value);
|
|
|
|
|
|
|
|
};
|