Aura.Channel.Scripting.Scripts.NpcScript.Input C# (CSharp) Method

Input() public method

public Input ( string title = "Input", string text = "", byte maxLength = 20, bool cancelable = true ) : DialogInput
title string
text string
maxLength byte
cancelable bool
return DialogInput
		public DialogInput Input(string title = "Input", string text = "", byte maxLength = 20, bool cancelable = true) { return new DialogInput(title, text, maxLength, cancelable); }