mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 21:00:11 +00:00
10 lines
154 B
C#
10 lines
154 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
namespace XCharts
|
|
{
|
|
public interface IJsonData
|
|
{
|
|
void ParseJsonData(string json);
|
|
}
|
|
} |