using System.Collections; using System.Collections.Generic; using UnityEngine; /// /// 玩家与其它物体交互接口 /// public interface IInteraction { /// /// 交互方法 /// /// 交互返回值 一般用于是否可以继续移动 bool Interaction(); }