예제 #1
0
파일: MainMenu.cs 프로젝트: zarac/tgspu
        public MainMenu(ETalisman eTalisman)
            : base(eTalisman, eTalisman.input, eTalisman.spriteBatch, new Rectangle(0, 0, eTalisman.graphics.PreferredBackBufferWidth, eTalisman.graphics.PreferredBackBufferHeight))
        {
            this.eTalisman = eTalisman;

            root = new SubMenu(this, null, null);
            currentMenu = root;

            root.AddChild(new OptionCloseMenu(this, "Resume"));

            root.AddChild(new NewAdventure(eTalisman, this));

            options = new SubMenu(this, root, "Options");
            options.AddChild(new ExitGame(this, "exit again..", eTalisman));
            root.AddChild(options);

            root.AddChild(new ExitGame(this, eTalisman));
        }