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

18 lines
404 B
C#
Raw Permalink Normal View History

2023-12-14 22:21:22 +00:00
namespace ProjectZ.InGame.GameObjects.Base.Components
{
class AnimationSheetComponent : BaseAnimationComponent
{
public SheetAnimator Animator;
public AnimationSheetComponent(SheetAnimator animator)
{
Animator = animator;
}
public override void UpdateAnimation()
{
Animator.Update();
}
}
}