the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 14 lines 261 B view raw
1#pragma once 2class BufferedImage; 3class HttpTextureProcessor; 4using namespace std; 5 6class HttpTexture { 7public: 8 BufferedImage *loadedImage; 9 int count; 10 int id; 11 bool isLoaded; 12 13 HttpTexture(const wstring& _url, HttpTextureProcessor *processor); 14};