mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-10 06:41:36 +00:00
20 lines
353 B
C++
20 lines
353 B
C++
|
|
class idFrobCube : public idStaticEntity
|
|
{
|
|
public:
|
|
CLASS_PROTOTYPE( idFrobCube );
|
|
|
|
void Spawn( void );
|
|
|
|
void Save( idSaveGame *savefile ) const;
|
|
void Restore( idRestoreGame *savefile );
|
|
|
|
void OnFrob( idEntity* activator );
|
|
|
|
private:
|
|
|
|
idStr functionName;
|
|
idStr masterName;
|
|
|
|
// void Event_onfrobPanel_Reset( void );
|
|
};
|