StatsDebugManager.GlobalStatsRequest
Declaration#
public static void GlobalStatsRequest(GlobalStats source, string message)Parameters#
| Name | Description |
|---|---|
| source | Stat Source consuming the message |
| message | Message to process |
Description#
Progress requests for GlobalStats
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GlobalStats other) { StatsDebugManager.GlobalStatsRequest(other, "help"); }
}