using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// 设置接口,提供读取保存配置
///
public interface ISetting
{
string Code { get; }
public bool Save(string setItem,T value);
public T Read(string setItem);
public void Remove(string setItem);
}