hotfixes - so we can at least run it #9

Merged
lgc merged 3 commits from hotfixes into main 2024-11-27 12:01:15 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 73add1442b - Show all commits

View File

@ -1,7 +1,7 @@
public class SpecificAiPlayer1 extends AiPlayer{ public class SpecificAiPlayerEasy extends AiPlayer{
public SpecificAiPlayer1(int size) { public SpecificAiPlayerEasy(int size) {
super(size); super(size);
} }
} }

View File

@ -1,7 +1,7 @@
public class SpecificAiPlayer1 extends AiPlayer{ public class SpecificAiPlayerHard extends AiPlayer{
public SpecificAiPlayer1(int size) { public SpecificAiPlayerHard(int size) {
super(size); super(size);
} }
} }