Aura.Channel.Scripting.Scripts.NpcShopScript.SetPaymentMethod C# (CSharp) 메소드

SetPaymentMethod() 공개 메소드

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