Skip to main content

InventoryDatabaseV2.itemSetBonuses

public static List<GDTKItemSetBonus> itemSetBonuses { get; }

Description#

Gets a list of all Item Set Bonuses in the database

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(InventoryDatabaseV2 target)    {        System.Collections.Generic.List<GDTKItemSetBonus> result = target.itemSetBonuses;    }   }