Merchant.items
public IReadOnlyList<GDTKItem> items { get; }
#
DescriptionGets a list of all stocked items
#
UsageExample
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Merchant target) { System.Collections.Generic.IReadOnlyList<GDTKItem> result = target.items; } }