InventoryThemeUI.OpenMerchantWindow
#
Declarationpublic ThemeWindowUI OpenMerchantWindow(Merchant merchant, string id)
#
ParametersName | Description |
---|---|
merchant | Associated Merchant to use |
id | Id of a specific window to use (first found if Id is null) |
#
DescriptionOpens a Merchant window
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryThemeUI target, Merchant other) { target.OpenMerchantWindow(other, "optionalId"); }
}