projectEli/Assets/NeoFPS/Core/MotionGraphs/IStepTracker.cs

16 lines
282 B
C#
Raw Normal View History

2022-11-07 01:28:33 +00:00
using UnityEngine;
using UnityEngine.Events;
namespace NeoFPS.CharacterMotion
{
public interface ICharacterStepTracker
{
event UnityAction onStep;
float stepCounter { get; }
float strideLength { get; set; }
void SetWholeStep();
}
}