Skip to main content

GDTKBonusEntry.pluginWrappers

public List<UniversalPluginWrapper<ItemSetBonusPlugin>> pluginWrappers { get; }

Description#

Get a list of plugin wrappers on this item

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(GDTKBonusEntry target)    {        System.Collections.Generic.List<UniversalPluginWrapper<ItemSetBonusPlugin>> result = target.pluginWrappers;    }   }