PlayerCharacterStats.startingRaceId
public string startingRaceId { get; }Description#
Returns the starting race id
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(PlayerCharacterStats target) { string result = target.startingRaceId; }
}