AK056/Assets/script/setting/WebGlSetting.cs
2025-05-07 11:20:40 +08:00

28 lines
566 B
C#

using EasyInject.Attributes;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// wegbl ÊôÐÔÉèÖÃÆ÷
/// </summary>
[Component]
public class WebGlSetting : ISetting
{
public string Code => "WEGBL";
public T Read<T>(string setItem)
{
throw new System.NotImplementedException();
}
public void Remove(string setItem)
{
throw new System.NotImplementedException();
}
public bool Save<T>(string setItem, T value)
{
throw new System.NotImplementedException();
}
}