Building a Game Server in C++ #3: Rock Paper Scissors
In the last article we made a very basic version of the server that accepts TCP connections and keeps track of its clients’ sessions. But what is a game server without games? In this article we will implement a simple, text-based Rock Paper Scissors game. Preparing the Server First of all, since we are about…
