16 lines
299 B
C#
Raw Normal View History

2024-08-17 14:27:18 +08:00
using Entitas;
using JNGame.Sync.Entity;
using NotImplementedException = System.NotImplementedException;
namespace JNGame.Sync.System
{
/// <summary>
/// 同步 - 基础系统
/// </summary>
public class SBaseSystem : JNBaseSystem
{
public JNContexts Contexts;
}
}