In this third part of Tutorial MUD, we will start parsing the command line options. We will continue working on the code done in part 1 and part 2, so we will have an almost empty main function and start from that. The code in part 2 can be found in github.
Tag Archives: cxx
Tutorial MUD, part 2: Logging
In this second part of making a simple MUD, we will try to add simple logging to our server. Logging is used to output information from the server, that can be read by an administrator in case of some problem. This part continues where part 1 left of, and you can find the complete code …