All games now have the correct gameMain defined in gradle.properties

This commit is contained in:
Paul Holt
2022-01-08 01:45:49 +11:00
parent b473fffc4a
commit d7b8976a20
2 changed files with 1 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ import java.util.Random;
/** /**
* @author Ollie Hensman-Crook * @author Ollie Hensman-Crook
*/ */
public class TicTacToe2 { public class TicTacToe {
public static void main(String[] args) { public static void main(String[] args) {
Board gameBoard = new Board(); Board gameBoard = new Board();
Random compChoice = new Random(); Random compChoice = new Random();