I’m trying to figure out how to build two versions of the same project as easily as possible.
I want one build to be for server that initializes it without requiring any user input and other to display client version with the menu for connecting.
Right now I’m using a bool variable that I will manually set as true or false based on if I want the build to be for server or client and then compile both of the builds.
It works, but is there something more convenient?