namespace Milimoe.FunGame.Desktop.Library { /// /// 运行时单例 /// 插件接口可以从这里拿Socket和窗体 /// public class RunTime { public static Core.Library.Common.Network.Socket? Socket { get; set; } = null; public static Controller.RunTimeController? Connector { get; set; } = null; public static UI.Main? Main { get; set; } = null; public static UI.Login? Login { get; set; } = null; public static UI.Register? Register { get; set; } = null; public static UI.StoreUI? Store { get; set; } = null; public static UI.InventoryUI? Inventory { get; set; } = null; public static UI.RoomSetting? RoomSetting { get; set; } = null; public static UI.UserCenter? UserCenter { get; set; } = null; public static void WritelnSystemInfo(string msg) { Main?.GetMessage(msg); } } }