Connect 4 multiplayer terminal game
You need to have the game engine running before you run the game server.
You need to have the game server running before you run the game client.
Open them separately, each in its own terminal.
How to run the game engine:
$ make -s build SYSTEM=ge
$ ./bin/ge --port=50051How to run the game server:
$ make -s build SYSTEM=gs
$ ./bin/gs --port=50052 --geHost=127.0.0.1 --gePort=50051How to run the game client:
$ make -s build SYSTEM=gc
$ ./bin/gc --gsHost=127.0.0.1 --gsPort=50052