Aura.Channel.Scripting.Scripts.NpcShopScript.SetPaymentMethod C# (CSharp) Method

SetPaymentMethod() public method

Sets the payment method for the given tab.
public SetPaymentMethod ( string tabTitle, PaymentMethod method ) : void
tabTitle string
method PaymentMethod
return void
		public void SetPaymentMethod(string tabTitle, PaymentMethod method)
		{
			var tab = this.GetOrCreateTab(tabTitle);
			tab.PaymentMethod = method;
		}