PC-20230316NUNE\Administrator 09db51f67b 提交
2024-01-29 19:07:52 +08:00

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