Inventory.craftingQueue
public IReadOnlyList<GDTKCraftingQueueItem> craftingQueue { get; }
#
DescriptionGets a list of all items in the Crafting Queue
#
UsageExample
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Inventory target) { System.Collections.Generic.IReadOnlyList<GDTKCraftingQueueItem> result = target.craftingQueue; } }