Skip to main content

InWorldContainer.itemContainer

public ItemContainer itemContainer { get; }

Description#

Gets the item container

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(InWorldContainer target)    {        ItemContainer result = target.itemContainer;    }   }