LimitItemCountPlugin.Shutdown
Declaration#
public virtual void Shutdown()Description#
Shutdown plugin
Usage#
using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Inventory target) { foreach(InventoryPluginWrapper wrapper in target.plugins) { wrapper.plugin.Shutdown(); } }}