projectEli/Assets/NeoFPS/Core/MotionGraphs/IStepTracker.cs
2022-11-06 20:28:33 -05:00

16 lines
282 B
C#

using UnityEngine;
using UnityEngine.Events;
namespace NeoFPS.CharacterMotion
{
public interface ICharacterStepTracker
{
event UnityAction onStep;
float stepCounter { get; }
float strideLength { get; set; }
void SetWholeStep();
}
}