Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 567 Bytes

File metadata and controls

26 lines (20 loc) · 567 Bytes

connect-4

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=50051

How to run the game server:

$ make -s build SYSTEM=gs
$ ./bin/gs --port=50052 --geHost=127.0.0.1 --gePort=50051

How to run the game client:

$ make -s build SYSTEM=gc
$ ./bin/gc --gsHost=127.0.0.1 --gsPort=50052