/// <summary> /// Allows the game component to perform any initialization it needs to before starting /// to run. This is where it can query for any required services and load content. /// </summary> public override void Initialize() { _spriteFonts = new SpriteFonts(ContentManager); foreach (GameScreen screen in _screens) { screen.Initialize(); } base.Initialize(); }