13 lines
198 B
C#
Raw Permalink Normal View History

using UnityEngine;
public interface IStoreData
{
string GetLevelsJson();
}
public abstract class StoreDataBase : MonoBehaviour, IStoreData
{
public abstract string GetLevelsJson();
}