Files
plugin-library/Assets/00.StaryEvo/Editor/Resources/ArchitectureTemplate.txt

12 lines
258 B
Plaintext
Raw Normal View History

2025-09-23 11:18:38 +08:00

namespace NamespaceX
{
public class ArchitectureX : Architecture<ArchitectureX>
{
protected override void Init()
{
//注册示例
//RegisterSystem<IScoreSystem>(new ScoreSystem());
}
}
}