quadrilateralcowboy/d3xp/screw.h

21 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;
};