using System.Collections; using System.Collections.Generic; using UnityEngine; namespace AX.InputSystem { /// /// 判断是否能克隆得接口 /// public interface IGameObjectCloneable { bool GetCloneAble(Vector3 hitPoint, GameObject hitObj, CloneObjType cloneObjType); } }