mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 16:43:39 +00:00
12 lines
277 B
C++
12 lines
277 B
C++
#include "../Platform/stdafx.h"
|
|
#include "HttpTexture.h"
|
|
|
|
HttpTexture::HttpTexture(const std::wstring& _url,
|
|
HttpTextureProcessor* processor) {
|
|
// 4J - added
|
|
count = 1;
|
|
id = -1;
|
|
isLoaded = false;
|
|
|
|
// 4J - TODO - actually implement
|
|
} |