Danmaku_no_Kyojin.Screens.TitleScreen.TitleScreen C# (CSharp) Method

TitleScreen() public method

public TitleScreen ( Microsoft.Xna.Framework.Game game, GameStateManager manager ) : System.Globalization
game Microsoft.Xna.Framework.Game
manager Danmaku_no_Kyojin.Controls.GameStateManager
return System.Globalization
        public TitleScreen(Game game, GameStateManager manager)
            : base(game, manager)
        {
            _menuText = new string[] { "1 Player", "2 Players", "Shop", "Options", "Exit" };
            _menuDescription = new string[] {
                "Playing game with only one player",
                "Playing game with your best friend",
                "Get new abilities to crush more enemies",
                "You can change inputs here",
                "Warning: I've never tested this button !",
            };

            _menuIndex = 0;
        }