mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-12 23:44:11 +00:00
20 lines
341 B
C++
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;
|
|
};
|