IPlatformPhysics.cs 175 B

1234567891011
  1. using System;
  2. using UnityEngine;
  3. public interface IPlatformPhysics
  4. {
  5. Vector2 velocity { get; set; }
  6. Vector2 position { get; set; }
  7. bool isOnGround { get; }
  8. }