Pascal Serrarens de12c36220 First commit
2022-01-11 16:51:37 +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);
}
}