24 lines
538 B
C#
Raw Normal View History

2024-01-26 19:15:07 +08:00
using Plugins.JNGame.System;
2024-01-29 02:28:42 +08:00
using Plugins.JNGame.Util;
2024-01-26 19:15:07 +08:00
using Script.AppImpl;
namespace Script
{
public static class App
{
public static JNGSocket Socket = new JNGSocket();
public static JNGSyncFrame Sync = new JNGSyncFrame();
2024-01-29 02:28:42 +08:00
public static JAPI Api = new(new JAPIConfig(){BaseURL = "http://localhost:8080"});
2024-01-26 19:15:07 +08:00
public static SystemBase[] System()
{
return new SystemBase[]
{
Socket,
Sync
};
}
}
}