Files

14 lines
261 B
C
Raw Permalink Normal View History

2026-03-01 12:16:08 +08:00
#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);
};