forked from Kolyah35/minecraft-pe-0.6.1
There's still one more issue to this: other peoples skins in multiplayer show corrupted.
14 lines
240 B
C++
14 lines
240 B
C++
#ifndef HTTPCLIENT_H__
|
|
#define HTTPCLIENT_H__
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace HttpClient {
|
|
|
|
bool download(const std::string& url, std::vector<unsigned char>& outBody);
|
|
|
|
} // namespace HttpClient
|
|
|
|
#endif /* HTTPCLIENT_H__ */
|