IPlayerController.cs 251 B

123456789101112131415
  1. using System;
  2. using UnityEngine;
  3. public interface IPlayerController
  4. {
  5. Vector2 Velocity { get; }
  6. void SetRespawnPoint(Vector2 pos);
  7. void PlayAnimation(string name);
  8. GameObject GameObject { get; }
  9. Transform Transform { get; }
  10. }