| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace PunkHPX8_Themes.Unity{    public static class UIEvents    {                public static event Action<DoorPara> PMDoorRaiseChangedEvent;        public static void OnPMDoorRaiseChanged(DoorPara para)        {            PMDoorRaiseChangedEvent?.Invoke(para);        }        public static event Action<DoorPara> LLTDoorRaiseChangedEvent;        public static void OnLLTDoorRaiseChanged(DoorPara para)        {            LLTDoorRaiseChangedEvent?.Invoke(para);        }        public static event Action<DoorPara> LLEDoorRaiseChangedEvent;        public static void OnLLEDoorRaiseChanged(DoorPara para)        {            LLEDoorRaiseChangedEvent?.Invoke(para);        }        public static event Action<WaferOperation> ChamberCreateDeleteWaferEvent;        public static void OnChamberCreateDeleteWafer(WaferOperation para)        {            ChamberCreateDeleteWaferEvent?.Invoke(para);        }    }    public class DoorPara    {        public string ModuleName { get; set; }        public string IsOpen { get; set; }    }    public class WaferOperation    {        public string ModuleName { get; set; }        public bool IsCreate { get; set; }    }}
 |