This commit is contained in:
Daveo 2001-05-04 18:47:12 +00:00
parent 39bc8ad165
commit fdfe68f4b5
3 changed files with 33 additions and 23 deletions

View file

@ -86,6 +86,7 @@ public:
TYPE_ENEMYPROJECTILE,
TYPE_TRIGGER,
TYPE_HAZARD,
TYPE_FX,
MAX_TYPE,
}
@ -225,6 +226,11 @@ class CHazardThing : public CThing
public:
virtual TYPE getThingType() {return TYPE_HAZARD;}
};
class CFXThing : public CThing
{
public:
virtual TYPE getThingType() {return TYPE_FX;}
};
/*----------------------------------------------------------------------