mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
22 lines
425 B
C++
22 lines
425 B
C++
#pragma once
|
|
|
|
using njson = nlohmann::json;
|
|
|
|
struct PlayerInfoResponse
|
|
{
|
|
explicit PlayerInfoResponse(const njson& playerInfoResponse)
|
|
{
|
|
index = playerInfoResponse["index"];
|
|
name = playerInfoResponse["name"];
|
|
frags = playerInfoResponse["frags"];
|
|
deaths = playerInfoResponse["deaths"];
|
|
teamName = playerInfoResponse["teamName"];
|
|
}
|
|
|
|
int index;
|
|
std::string name;
|
|
int frags;
|
|
int deaths;
|
|
std::string teamName;
|
|
};
|