PC-20230316NUNE\Administrator 04043cc6fc 提交
2024-02-04 16:17:39 +08:00

24 lines
631 B
C#

using Plugins.JNGame.System;
using Plugins.JNGame.Util;
namespace Game.Plugins.App
{
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://127.0.0.1:8080"});
public static readonly EventDispatcher Event = EventDispatcher.Event;
public static SystemBase[] System()
{
return new SystemBase[]
{
Socket,
Sync
};
}
}
}