GlobalStats.JSONImportSmart
Declaration#
public void JSONImportSmart(jsonStatsList source)Parameters#
| Name | Description |
|---|---|
| source | JSON source |
Description#
Import JSON formatted data
Usage#
Example
using NullSave.GDTK.JSON;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GlobalStats target, jsonStatsList data) { target.JSONImportSmart(data); }
}