Blink.GUI.StateLevelSelect.StateLevelSelect C# (CSharp) Метод

StateLevelSelect() публичный Метод

public StateLevelSelect ( Vector2 screenSize, String title, String options, GameState g ) : System
screenSize Vector2
title String
options String
g GameState
Результат System
        public StateLevelSelect(Vector2 screenSize, String title, String[] options, GameState g)
        {
            this.game = g;
            this.screenSize = screenSize;
            this.titleString = title;
            this.optionsStrings = options;
            this.buttons = new List<TextButton>();
        }