blob: 0f452e878c59f2d3e07b7e71be00b8fde04561f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "stdafx.h"
#include "HttpTexture.h"
HttpTexture::HttpTexture(const wstring& _url, HttpTextureProcessor *processor)
{
// 4J - added
count = 1;
id = -1;
isLoaded = false;
// 4J - TODO - actually implement
}
|