using Plugins.JNGame.System; using Plugins.JNGame.Util; using Script.AppImpl; namespace Script { public static class App { public static readonly JNGSocket Socket = new JNGSocket(); public static readonly JNGSyncFrame Sync = new JNGSyncFrame(); public static readonly JAPI Api = new(new JAPIConfig(){BaseURL = "http://192.168.1.23:8080"}); public static readonly EventDispatcher Event = EventDispatcher.Event; public static SystemBase[] System() { return new SystemBase[] { Socket, Sync }; } } }