InventoryThemeUI.CloseWindow
Declaration#
public void CloseWindow(ThemeWindowUI window)Parameters#
| Name | Description |
|---|---|
| window | Window to close |
Description#
Closes an opened window
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryThemeUI target, ThemeWindowUI other) { target.CloseWindow(other); }
}