14 lines
261 B
C
14 lines
261 B
C
|
|
#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);
|
||
|
|
};
|