StatsDatabaseV2.GetTopRace
Declaration#
public GDTKRace GetTopRace(GDTKRace race)Parameters#
| Name | Description |
|---|---|
| race | Race to check |
Description#
Get the top level of a race
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(GDTKRace target) { GDTKRace result = StatsDatabaseV2.instance.GetTopRace(target); }}