Building a Game Server in C++ #5: Joining games
Our server has reached a point where users can authenticate, browse games and active game worlds, create new worlds and terminate them. In this article we will give them the ability to join games by adding a cmdJoin to our command arsenal. First things first, we have to add it to commandType and commandStrType: As…
