mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 10:43:35 +00:00
12 lines
246 B
C++
12 lines
246 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
|
|
} |