LADXHD/InGame/GameObjects/Base/Components/BaseAnimationComponent.cs
2023-12-14 17:21:22 -05:00

14 lines
315 B
C#

namespace ProjectZ.InGame.GameObjects.Base.Components
{
class BaseAnimationComponent : Component
{
public new static int Index = 1;
public static int Mask = 0x01 << Index;
public bool UpdateWithOpenDialog;
public virtual void UpdateAnimation() { }
}
}