mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
24 lines
538 B
C#
24 lines
538 B
C#
using Plugins.JNGame.System;
|
|
using Plugins.JNGame.Util;
|
|
using Script.AppImpl;
|
|
|
|
namespace Script
|
|
{
|
|
public static class App
|
|
{
|
|
|
|
public static JNGSocket Socket = new JNGSocket();
|
|
public static JNGSyncFrame Sync = new JNGSyncFrame();
|
|
public static JAPI Api = new(new JAPIConfig(){BaseURL = "http://localhost:8080"});
|
|
|
|
public static SystemBase[] System()
|
|
{
|
|
return new SystemBase[]
|
|
{
|
|
Socket,
|
|
Sync
|
|
};
|
|
}
|
|
|
|
}
|
|
} |