Add the new argument to all uses of the implement macro

This commit is contained in:
Leonard2 2016-11-06 19:43:19 +01:00
commit 7dbc4710f1
125 changed files with 346 additions and 346 deletions

View file

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