- scriptified A_KeenDie.

- added an 'exact' parameter to FThinkerIterator's Next function. This is mainly for scripting which allows to do a lot more checks natively when running the iterator while looking for one specific class.
This commit is contained in:
Christoph Oelckers 2016-11-05 01:19:41 +01:00
commit 010fd038be
10 changed files with 59 additions and 55 deletions

View file

@ -369,6 +369,12 @@ DEFINE_ACTION_FUNCTION(DObject, Destroy)
return 0;
}
DEFINE_ACTION_FUNCTION(DObject, GetClass)
{
PARAM_SELF_PROLOGUE(DObject);
ACTION_RETURN_OBJECT(self->GetClass());
}
//==========================================================================
//
//