Ejemplo n.º 1
0
        //public TitleScreen(Model model, float aspectRatio, Texture2D texture)
        public TitleScreen(titleScreens screen_state)
        {
            menu_list = new List <TitleMenuOptions>(3);
            menu_list.Add(new TitleMenuOptions("START"));
            menu_list.Add(new TitleMenuOptions("OPTIONS"));
            menu_list.Add(new TitleMenuOptions("QUIT"));

            menu_item_selected = 0;

            screen = screen_state;

            fade_state = FadeState.fadeIn;

            storageDevicePrompted = false;

            InputDevice2.UnlockAllControllers();
        }