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