GameClient.h 221 B

123456789101112
  1. #ifndef GAME_CLIENT_H
  2. #define GAME_CLIENT_H
  3. #include "network/Client.h"
  4. namespace GameClient {
  5. bool init();
  6. Error connect(const char* address, Client::Port port, int timeout);
  7. void consumeEvents();
  8. }
  9. #endif