mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 16:13:36 +00:00
15 lines
266 B
C++
15 lines
266 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class BufferedImage;
|
|
class HttpTextureProcessor;
|
|
|
|
class HttpTexture {
|
|
public:
|
|
BufferedImage* loadedImage;
|
|
int count;
|
|
int id;
|
|
bool isLoaded;
|
|
|
|
HttpTexture(const std::string& _url, HttpTextureProcessor* processor);
|
|
}; |