Net.Project.B/Src/CharacterAnimation/IPlayerAnimationFactory.cs

13 lines
266 B
C#

using System.Collections;
using System.Collections.Generic;
using BITKit;
using Unity.Mathematics;
namespace Project.B.Animation
{
public interface IPlayerAnimationFactory : IHumanoidAnimationFactory
{
public object CreateStepUpAnimation();
}
}