15 lines
414 B
C#
15 lines
414 B
C#
|
|
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());
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|