#ifndef GAME_CLIENT_H #define GAME_CLIENT_H #include "network/Client.h" namespace GameClient { bool init(); Error connect(const char* address, Client::Port port, int timeout); void consumeEvents(); } #endif