Skip to main content

StatsDatabase.GetEvent

Declaration#

public GDTKEvent GetEvent(string id)

Parameters#

NameDescription
idId 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(StatsDatabase target, string id)    {        GDTKEvent result = target.GetEvent(id);    }
}