AtlusScriptLibrary.MessageScriptLanguage.SelectionDialog.SelectionDialog C# (CSharp) Метод

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

Constructs a new selection dialog with just an identifier.
public SelectionDialog ( string identifier, SelectionDialogPattern pattern = SelectionDialogPattern.Top ) : System.Collections
identifier string The text identifier of the window.
pattern SelectionDialogPattern
Результат System.Collections
        public SelectionDialog( string identifier, SelectionDialogPattern pattern = SelectionDialogPattern.Top )
        {
            Name = identifier;
            Pattern = pattern;
            Options = new List<TokenText>();
        }

Same methods

SelectionDialog::SelectionDialog ( string identifier, SelectionDialogPattern pattern, List pages ) : System.Collections