HumanoidControl_Free/Runtime/Sites/Scripts/IHumanoidMovement.cs
Pascal Serrarens 17741d862a First commit
2022-01-12 10:50:57 +01:00

13 lines
241 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Passer.Humanoid {
public interface IHumanoidMovement {
void Jump(float takeoffVelocity);
void Rotation(float yAngle);
}
}