mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-02-20 19:12:07 +00:00
export UpdateSpriteInfo
This commit is contained in:
parent
925b62b8c5
commit
6a067a7630
1 changed files with 13 additions and 0 deletions
|
@ -1090,6 +1090,19 @@ void DVisualThinker::UpdateSpriteInfo()
|
|||
}
|
||||
}
|
||||
|
||||
static void UpdateSpriteInfo(DVisualThinker * self)
|
||||
{
|
||||
self->UpdateSpriteInfo();
|
||||
}
|
||||
|
||||
DEFINE_ACTION_FUNCTION_NATIVE(DVisualThinker, UpdateSpriteInfo, UpdateSpriteInfo)
|
||||
{
|
||||
PARAM_SELF_PROLOGUE(DVisualThinker);
|
||||
self->UpdateSpriteInfo();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
// This runs just like Actor's, make sure to call Super.Tick() in ZScript.
|
||||
void DVisualThinker::Tick()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue