Skip to main content

GDTKItem.statIds

public IReadOnlyList<string> statIds { get; }

Description#

Get a list of stat ids for this item

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(GDTKItem target)    {        System.Collections.Generic.IReadOnlyList<string> result = target.statIds;    }   }