Files
RaindropViewer/Assets/Raindrop/UI/Map/MapCache.cs
T
2022-03-28 21:29:45 +08:00

27 lines
572 B
C#

using Raindrop.DS;
namespace Raindrop.UI.Model
{
internal class MapCache : ICache
{
public bool Exists(string key)
{
throw new System.NotImplementedException();
}
public T Get<T>(string key)
{
throw new System.NotImplementedException();
}
public void Remove(string key)
{
throw new System.NotImplementedException();
}
public void Set<T>(string key, T value)
{
throw new System.NotImplementedException();
}
}
}