fixup! fixup! Add a service to announce multiplayer rooms to web service; Add the abiltiy to receive a list of all announced rooms from web service

This commit is contained in:
B3n30
2017-11-05 20:23:22 +01:00
parent 1485093fd9
commit 93742f17b3
6 changed files with 35 additions and 32 deletions

View File

@ -5,8 +5,10 @@
#pragma once
#include <array>
#include <future>
#include <string>
#include <json.hpp>
#include "common/announce_multiplayer_room.h"
#include "common/telemetry.h"
namespace WebService {
@ -54,6 +56,7 @@ private:
std::string endpoint_url;
std::string username;
std::string token;
std::future<Common::WebResult> future;
};
} // namespace WebService