Files
plugin-library/Assets/Main/Resources/ArchitectureTemplate.txt
2025-05-23 18:26:47 +08:00

12 lines
258 B
Plaintext

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