using UnityEngine; using XGame.Framework.Interfaces; namespace FL.Battle.Actions { /// /// Transform行为接口,可复用 /// public interface IAction : IReference { void Start(Transform transform); } }