group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
PostMatchResult.hpp
Go to the documentation of this file.
1
3
4#pragma once
5
6#include <string>
7#include <vector>
8
10{
11 int clientId = -1;
12 std::string name;
13 int kills = 0;
14 int deaths = 0;
15 bool isLocal = false;
16};
17
19{
20 bool won = false;
21 int winnerId = -1;
22 std::vector<PostMatchScoreRow> rows;
23};
Definition PostMatchResult.hpp:19
std::vector< PostMatchScoreRow > rows
Definition PostMatchResult.hpp:22
int winnerId
Definition PostMatchResult.hpp:21
bool won
Definition PostMatchResult.hpp:20
Definition PostMatchResult.hpp:10
int clientId
Definition PostMatchResult.hpp:11
int deaths
Definition PostMatchResult.hpp:14
bool isLocal
Definition PostMatchResult.hpp:15
std::string name
Definition PostMatchResult.hpp:12
int kills
Definition PostMatchResult.hpp:13