Aura.Channel.ChannelServer.InitializeWorld C# (CSharp) 메소드

InitializeWorld() 개인적인 메소드

private InitializeWorld ( ) : void
리턴 void
		private void InitializeWorld()
		{
			Log.Info("Initializing world...");

			this.World = new WorldManager();
			this.World.Initialize();
			this.PartyManager.Initialize();
			this.GuildManager.Initialize();
			this.GameEventManager.Initialize();

			Log.Info("  done loading {0} regions.", this.World.Count);
			Log.Info("  done loading {0} guilds.", this.GuildManager.Count);
		}