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