InventoryThemeUI.CloseWindow
#
Declarationpublic void CloseWindow(ThemeWindowUI window)
#
ParametersName | Description |
---|---|
window | Window to close |
#
DescriptionCloses an opened window
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryThemeUI target, ThemeWindowUI other) { target.CloseWindow(other); }
}