mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 09:43:40 +00:00
13 lines
248 B
C++
13 lines
248 B
C++
#pragma once
|
|
class BufferedImage;
|
|
class HttpTextureProcessor;
|
|
|
|
class HttpTexture {
|
|
public:
|
|
BufferedImage* loadedImage;
|
|
int count;
|
|
int id;
|
|
bool isLoaded;
|
|
|
|
HttpTexture(const std::wstring& _url, HttpTextureProcessor* processor);
|
|
}; |