LADXHD/InGame/GameObjects/Base/Components/BaseAnimationComponent.cs

14 lines
315 B
C#
Raw Permalink Normal View History

2023-12-14 22:21:22 +00:00

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() { }
}
}