PC-20230316NUNE\Administrator a0c687b1ed 提交
2024-01-30 19:22:27 +08:00

25 lines
647 B
C#

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.0.118:8080"});
public static readonly EventDispatcher Event = EventDispatcher.Event;
public static SystemBase[] System()
{
return new SystemBase[]
{
Socket,
Sync
};
}
}
}