mirror of
https://github.com/Phantop/LADXHD.git
synced 2025-09-04 20:57:37 +00:00
18 lines
404 B
C#
18 lines
404 B
C#
|
namespace ProjectZ.InGame.GameObjects.Base.Components
|
|||
|
{
|
|||
|
class AnimationSheetComponent : BaseAnimationComponent
|
|||
|
{
|
|||
|
public SheetAnimator Animator;
|
|||
|
|
|||
|
public AnimationSheetComponent(SheetAnimator animator)
|
|||
|
{
|
|||
|
Animator = animator;
|
|||
|
}
|
|||
|
|
|||
|
public override void UpdateAnimation()
|
|||
|
{
|
|||
|
Animator.Update();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|