Skip to main content

ItemContainer.maximumItems

public Int32 maximumItems { get; }

Description#

Gets the maximum number of items for this container

Usage#

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