This commit is contained in:
parent
39bc8ad165
commit
fdfe68f4b5
3 changed files with 33 additions and 23 deletions
|
@ -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;}
|
||||
};
|
||||
|
||||
|
||||
/*----------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue