WutheringWaves/Core/Resources/IResourceProvider.cs

8 lines
140 B
C#
Raw Normal View History

using System.Text.Json;
namespace Core.Resources;
public interface IResourceProvider
{
JsonDocument GetJsonResource(string path);
}