1 2 3 4 5 6 7 8 9 10 11 12 13 14
#pragma once class BufferedImage; class HttpTextureProcessor; using namespace std; class HttpTexture { public: BufferedImage *loadedImage; int count; int id; bool isLoaded; HttpTexture(const wstring& _url, HttpTextureProcessor *processor); };