Moved the enum to doombase.zs

This commit is contained in:
jekyllgrim 2023-12-17 14:54:12 +03:00 committed by Christoph Oelckers
parent fc809cfab6
commit df5dc5ebd8
2 changed files with 7 additions and 7 deletions

View file

@ -89,13 +89,6 @@ class Actor : Thinker native
const DEFMORPHTICS = 40 * TICRATE;
const MELEEDELTA = 20;
enum EMissileHitResult
{
MHIT_DEFAULT = -1,
MHIT_DESTROY = 0,
MHIT_PASS = 1,
}
// flags are not defined here, the native fields for those get synthesized from the internal tables.
// for some comments on these fields, see their native representations in actor.h.

View file

@ -612,6 +612,13 @@ enum EPickStart
}
enum EMissileHitResult
{
MHIT_DEFAULT = -1,
MHIT_DESTROY = 0,
MHIT_PASS = 1,
}
class SectorEffect : Thinker native
{
native protected Sector m_Sector;