using System.Collections; using System.Collections.Generic; using UnityEngine; namespace AibisDream { public interface IMoveable { void StartMove(); void Move(Vector2 mousePos); void StopMove(); } }