Terraria.TerraCustom.OptionLabel.OptionLabel C# (CSharp) Method

OptionLabel() public method

public OptionLabel ( string v, Func getter, Action setter ) : Microsoft.Xna.Framework
v string
getter Func
setter Action
return Microsoft.Xna.Framework
		public OptionLabel(string[] v, Func<int> getter, Action<int> setter)
		{
			this.optionStrings = v;
			this.getter = getter;
			this.setter = setter;
			labelScale = 0.73f;
		}