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