UniversalPluginWrapper`1.ToJSON
Declaration#
public jsonUniversalPluginWrapper ToJSON()Description#
Get a JSON compatible representation of this object
Usage#
Example
using NullSave.GDTK;using NullSave.GDTK.JSON;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(UniversalPluginWrapper<UniversalPlugin> target) { jsonUniversalPluginWrapper result = target.ToJSON(); }
}