Skip to main content

GlobalStats.JSONImportSmart

Declaration#

public void JSONImportSmart(jsonStatsList source)

Parameters#

NameDescription
sourceJSON 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);    }
}