TransferWindowUI.OpenOtherWindow
#
Declarationpublic void OpenOtherWindow(string id)
#
ParametersName | Description |
---|---|
id | Id of the window to open |
#
DescriptionOpen another window with this one
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(TransferWindowUI target, string id) { target.OpenOtherWindow(id); }
}