Skip to main content

ItemContainer.plugins

public IReadOnlyList<InventoryPlugin> plugins { get; }

Description#

Gets a list of plugins for this object

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(ItemContainer target)    {        System.Collections.Generic.IReadOnlyList<InventoryPlugin> result = target.plugins;    }   }