quadrilateralcowboy/d3xp/screw.h
2020-06-12 14:06:25 -07:00

20 lines
341 B
C++

class idScrew : public idMoveableItem
{
public:
CLASS_PROTOTYPE( idScrew );
void Save( idSaveGame *savefile ) const;
void Restore( idRestoreGame *savefile );
void Frob( void );
void Spawn( void );
void Reset( void );
bool unscrewed;
private:
void ScrewOut( void );
idMover * moverItem;
};