Skip to main content

ItemContainer.GetItemCategory

Declaration#

public GDTKItemCategory GetItemCategory(string id)

Parameters#

NameDescription
idId of the item category to return

Description#

Get an item category boy id

Usage#

using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(ItemContainer target, string other)    {        GDTKItemCategory result = target.GetItemCategory(other);    }}