mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
16 lines
299 B
C#
16 lines
299 B
C#
|
using Entitas;
|
||
|
using JNGame.Sync.Entity;
|
||
|
using NotImplementedException = System.NotImplementedException;
|
||
|
|
||
|
namespace JNGame.Sync.System
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 同步 - 基础系统
|
||
|
/// </summary>
|
||
|
public class SBaseSystem : JNBaseSystem
|
||
|
{
|
||
|
|
||
|
public JNContexts Contexts;
|
||
|
|
||
|
}
|
||
|
}
|