mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-10 06:41:36 +00:00
21 lines
351 B
C++
21 lines
351 B
C++
|
|
class idPowerScrewGeneric : public idMover
|
|
{
|
|
public:
|
|
CLASS_PROTOTYPE( idPowerScrewGeneric );
|
|
|
|
|
|
void Save( idSaveGame *savefile ) const;
|
|
void Restore( idRestoreGame *savefile );
|
|
|
|
void OnActivate( void );
|
|
void Spawn( void );
|
|
void Reset( void );
|
|
|
|
private:
|
|
|
|
//idMover * mover;
|
|
|
|
int countMax;
|
|
int count;
|
|
};
|