@@ -23,7 +23,7 @@ The repository includes two Android Studio projects, "CheckersClient" and "Check
To connect to a particular server you need its IP address. Once you have this address, you can set up your client.
- Open "CheckersClient" in Android Studio
- Go to `core/src/com/mygdx/game/controllers/NetworkController` and at the line `String IP4_LAN_ADDRESS = "xxx.xxx.xxx.xxx";` substitute xxx.xxx.xxx.xxx with the server's IP address.
- Go to `core/src/com/mygdx/game/controllers/NetworkController` and at the line `String IP4_LAN_ADDRESS = "xxx.xxx.xxx.xxx";` substitute xxx.xxx.xxx.xxx with the server's IP address. The line right below is `client.connect(10000, IP4_LAN_ADDRESS, 54555)`. Here change 54555 with a different TCP port if necessary.