StatsDatabase.JSONExport
Declaration#
public string JSONExport()Description#
Export all data to json
Usage#
Example
using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(StatsDatabase target) { string result = target.JSONExport(); target.JSONImport(result, true); }
}