GlobalStats.startingAttributeIds
public IReadOnlyList<string> startingAttributeIds { get; }Description#
Returns list of starting attribute ids
Usage#
Example
using NullSave.GDTK.Stats;using System.Collections.Generic;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GlobalStats target) { IReadOnlyList<string> result = target.startingAttributeIds; }
}