namespace GameCreator.Runtime.Characters
{
    public class Footstep
    {
        public bool wasGrounded = true;
        public float stepTime = -999f;
    }
}