Replaced the many implement macros with a single one that takes arguments instead

This commit is contained in:
Leonard2 2016-11-05 18:27:14 +01:00
commit bb2d61de50
126 changed files with 365 additions and 388 deletions

View file

@ -1369,7 +1369,7 @@ private:
DPlaneWatcher() {}
};
IMPLEMENT_POINTY_CLASS(DPlaneWatcher)
IMPLEMENT_CLASS(DPlaneWatcher, false, true, false)
IMPLEMENT_POINTERS_START(DPlaneWatcher)
IMPLEMENT_POINTER(Activator)
@ -2860,7 +2860,7 @@ void FBehavior::StaticStopMyScripts (AActor *actor)
//---- The ACS Interpreter ----//
IMPLEMENT_POINTY_CLASS(DACSThinker)
IMPLEMENT_CLASS(DACSThinker, false, true, false)
IMPLEMENT_POINTERS_START(DACSThinker)
IMPLEMENT_POINTER(LastScript)
@ -2991,7 +2991,7 @@ void DACSThinker::StopScriptsFor (AActor *actor)
}
}
IMPLEMENT_POINTY_CLASS(DLevelScript)
IMPLEMENT_CLASS(DLevelScript, false, true, false)
IMPLEMENT_POINTERS_START(DLevelScript)
IMPLEMENT_POINTER(next)