- scriptified the Sigil. This isn't fully tested yet.
This commit is contained in:
parent
c9a4087c18
commit
8551a4f6e1
19 changed files with 450 additions and 494 deletions
|
|
@ -439,6 +439,15 @@ void DPSprite::SetState(FState *newstate, bool pending)
|
|||
return;
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION(DPSprite, SetState)
|
||||
{
|
||||
PARAM_SELF_PROLOGUE(DPSprite);
|
||||
PARAM_POINTER(state, FState);
|
||||
PARAM_BOOL_DEF(pending);
|
||||
self->SetState(state, pending);
|
||||
return 0;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// PROC P_BringUpWeapon
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue