StatsDatabaseV2.GetRace
Declaration#
public GDTKRace GetRace(string id)Parameters#
| Name | Description |
|---|---|
| id | Id of object to retrieve |
Description#
Get a Race by Id
Usage#
Example
using NullSave.GDTK;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(StatsDatabaseV2 target, string id) { GDTKRace result = target.GetRace(id); }
}