mirror of
https://github.com/Phantop/LADXHD.git
synced 2025-09-04 20:57:37 +00:00
14 lines
315 B
C#
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() { }
|
|||
|
}
|
|||
|
}
|