InventoryDatabaseV2.GetBestCurrencySet
#
Declarationpublic virtual Dictionary<GDTKCurrency, Int32> GetBestCurrencySet(Int32 value, bool premium)
#
ParametersName | Description |
---|---|
value | Value to get combination for |
premium | Use premium currencies |
#
DescriptionGets the best combination of currencies for the supplied value
#
Usageusing NullSave.GDTK.Inventory;using UnityEngine;
public class CodeSample : MonoBehaviour{
public void Example() { InventoryDatabaseV2.instance.GetBestCurrencySet(1234); }
}