ItemContainer.pluginWrappers
public List<InventoryPluginWrapper> pluginWrappers { get; }Description#
Gets a lit of plugin wrappers for this object
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(ItemContainer target) { System.Collections.Generic.List<InventoryPluginWrapper> result = target.pluginWrappers; } }