15 lines
477 B
Markdown
15 lines
477 B
Markdown
# Breakthrough
|
|
Reposity for the second CSCE 315 project
|
|
|
|
To compile everything:
|
|
g++ -std=c++11 test.cpp Engine.cpp Board.cpp Piece.cpp -o runner
|
|
or, alternatively if you delete the Parser.h and Parser.cpp (there's no need for them)
|
|
g++ -std=c++11 *.cpp -o runner
|
|
|
|
To launch the server:
|
|
./runner
|
|
|
|
Enter a port number when prompted, then the server is launched and waiting for a client to join.
|
|
|
|
Client can simply join via telnet:
|
|
telnet linux.cse.tamu.edu <port number>
|