powerscrewgeneric.h 372 B

12345678910111213141516171819202122
  1. class idPowerScrewGeneric : public idMover
  2. {
  3. public:
  4. CLASS_PROTOTYPE( idPowerScrewGeneric );
  5. void Save( idSaveGame *savefile ) const;
  6. void Restore( idRestoreGame *savefile );
  7. void OnActivate( void );
  8. void Spawn( void );
  9. void Reset( void );
  10. private:
  11. //idMover * mover;
  12. int countMax;
  13. int count;
  14. };