mirror of
https://github.com/Phantop/LADXHD.git
synced 2025-09-03 04:07:57 +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();
|
|
}
|
|
}
|
|
}
|