Support old steam http interfaces.

This commit is contained in:
Mr_Goldberg 2021-05-10 09:46:42 -04:00
parent 76c9e7a9ee
commit 0595490c00
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
5 changed files with 231 additions and 3 deletions

View file

@ -25,7 +25,10 @@ struct Steam_Http_Request {
std::string response;
};
class Steam_HTTP : public ISteamHTTP
class Steam_HTTP :
public ISteamHTTP001,
public ISteamHTTP002,
public ISteamHTTP
{
class Settings *settings;
class Networking *network;