PC-20230316NUNE\Administrator c5700ce655 提交
2024-09-29 20:18:48 +08:00

16 lines
274 B
C#

using Entitas;
namespace JNGame.Sync
{
public abstract class JNBaseSystem : ISystem
{
public JNSyncService Sync;
public T GetSystem<T>() where T : JNBaseSystem
{
return Sync.GetSystem<T>();
}
}
}