PC-20230316NUNE\Administrator b0a2e4a900 提交完美
2024-10-17 20:36:24 +08:00

16 lines
282 B
C#

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