Files
webRtc/Assets/Script/MainArchitecture.cs

15 lines
414 B
C#
Raw Normal View History

2026-05-12 17:45:40 +08:00
using Stary.Evo;
namespace RenderStreaming
{
public class MainArchitecture : Architecture<MainArchitecture>
{
protected override void Init()
{
//注册示例
//RegisterSystem<IScoreSystem>(new ScoreSystem());
RegisterSystem<IGlobalConfigSystem>(new GlobalConfigSystem());
RegisterSystem<ITimerSystem>(new TimerSystem());
}
}
}