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