using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace VoxelBusters.CoreLibrary
{
///
/// Adapter interface for supporting json conversion compatible with the plugin.
///
public interface IJsonServiceProvider
{
#region Methods
///
/// Generate a JSON representation of the given object.
///
/// The json.
/// Object.
string ToJson(object obj);
///
/// Create an object from specified JSON representation.
///
/// The object.
/// Json string.
object FromJson(string jsonString);
#endregion
}
}