Skip to main content

ItemContainer.GetPlugin

Declaration#

public T GetPlugin()

Description#

Get plugin of type T

Usage#

using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(ItemContainer target)    {        InventoryPlugin result = target.GetPlugin<InventoryPlugin>();    }
}