using Blue; namespace GHZLangChao { public class GHZLangChao : AbstractArchitecture { protected override void Init() { RegisterModel(); RegisterService(); RegisterUtility(); } private void RegisterModel() { } private void RegisterService() { this.RegisterService(new LoginService()); this.RegisterService(new QueueSystem()); this.RegisterService(new RTCService()); } private void RegisterUtility() { this.RegisterUtility(new RawImageForSpriteUtility()); } } }