InventoryThemeUI.Activate
Declaration#
public void Activate(Inventory host)Parameters#
| Name | Description |
|---|---|
| host | Inventory using the theme |
Description#
Activates the theme
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example(InventoryThemeUI target, Inventory other) { target.Activate(other); }
}