Skip to main content

Merchant.GetItemCategory

Declaration#

public GDTKItemCategory GetItemCategory(string id)

Parameters#

NameDescription
idId to get

Description#

Get an Item Category

Usage#

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