PC-20230316NUNE\Administrator 68c4d5e811 提交帧同步案例
2024-01-26 19:15:07 +08:00

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
};
}
}
}