Inventory.GetItemCategory
#
Declarationpublic GDTKItemCategory GetItemCategory(string id)
#
ParametersName | Description |
---|---|
id | Id to get |
#
DescriptionGet an Item Category
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(Inventory target, string other) { GDTKItemCategory result = target.GetItemCategory(other); }}