cfcoreapi/CFCoreAPI/Endpoints/Minecraft/MinecraftAPI.cs
2022-05-20 16:36:27 -05:00

10 lines
241 B
C#

namespace CFCoreAPI.Endpoints.Minecraft
{
public class MinecraftAPI : APIBase
{
public MinecraftAPI(HttpClient httpClient) : base(httpClient)
{
throw new System.NotImplementedException();
}
}
}