コード例 #1
0
		/// <summary>
		/// Adds a new menu to the menu manager.
		/// </summary>
		public void AddScreen(GameScreen screen)
		{
			screen.MenuSystem = this;
			screen.IsExiting = false;

			// If we have a graphics device, tell the menu to load content.
			if (isInitialized)
			{
				screen.LoadContent();
			}

			menus.AddLast(screen);
		}