12345678910111213 |
- #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();
- void send(OutPacket& out);
- }
- #endif
|