cfcoreapi/CFCoreAPI/Endpoints/Minecraft/MinecraftAPI.cs

10 lines
241 B
C#
Raw Normal View History

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