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