Blink.GUI.StateSimpleMenu.StateSimpleMenu C# (CSharp) Method

StateSimpleMenu() public method

public StateSimpleMenu ( Vector2 screenSize, String title, String options, GameState triggers ) : System
screenSize Vector2
title String
options String
triggers GameState
return System
        public StateSimpleMenu(Vector2 screenSize, String title, String[] options, GameState[] triggers)
        {
            this.screenSize = screenSize;
            this.titleString = title;
            this.optionsStrings = options;
            this.buttons = new List<TextButton>();
            this.triggers = triggers;
        }