using AX.NetworkSystem; using System; using System.Collections.Generic; public class ButtonRecordByAC : BaseButton { void Start() { } public override void RespondFun() { if (OutInterFaceButton != null) OutInterFaceButton.Invoke(); } public Action OutInterFaceButton; }