mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 11:24:46 +00:00
22 lines
420 B
C#
22 lines
420 B
C#
using Plugins.JNGame.System;
|
|
using Script.AppImpl;
|
|
|
|
namespace Script
|
|
{
|
|
public static class App
|
|
{
|
|
|
|
public static JNGSocket Socket = new JNGSocket();
|
|
public static JNGSyncFrame Sync = new JNGSyncFrame();
|
|
|
|
public static SystemBase[] System()
|
|
{
|
|
return new SystemBase[]
|
|
{
|
|
Socket,
|
|
Sync
|
|
};
|
|
}
|
|
|
|
}
|
|
} |