GDTKRecipe.pluginWrappers
public List<UniversalPluginWrapper<RecipePlugin>> pluginWrappers { get; }Description#
Get a list of plugin wrapper for this object
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKRecipe target) { System.Collections.Generic.List<UniversalPluginWrapper<RecipePlugin>> result = target.pluginWrappers; } }