Skip to main content

ItemContainer.items

public IReadOnlyList<GDTKItem> items { get; }

Description#

Gets a list of items in this container

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(ItemContainer target)    {        System.Collections.Generic.IReadOnlyList<GDTKItem> result = target.items;    }   }