28 lines
566 B
C#
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();
|
|
}
|
|
}
|