using UnityEngine; using XGame.Framework.Interfaces; namespace FL.Battle.Vfxs { /// /// 特效动作接口 /// public interface IVfxAction : IReference { void Start(Transform transform); } }