Botball Game State
A game stared library for Botball, it helps model the table and different phases of the competition.
Loading...
Searching...
No Matches
Client.h
1#pragma once
2#include <Socket.h>
3#include <GameState.h>
4
5class Client : public Socket {
6public:
13 [[nodiscard]] GameState get_remote_state(const std::string &ip_address, uint16_t port);
14
15private:
21 [[nodiscard]] GameState parse_remote_state(json data) const;
22};
Definition Client.h:5
GameState get_remote_state(const std::string &ip_address, uint16_t port)
Definition GameState.h:35
Definition Socket.h:8