A simple connect four game for the console implemented in Java
I have so far only used it in IntelliJ. To start open the file main/src/Main.java and run it
some comments:
- I tried to auto detect if the console in use allows for color output, but in the IntelliJ it should return True, when it actually gives False.
- I could not win the Hard Mode of the AI yet xD
- I had to touch some config buttons to get the tests to run, but I cannot remember exactly how it went.
Honestly my weakest point as a programmer is definetly tests, and I think it shows in this project. But ok, at least I implemented a minimax based "AI" to play against. That was fun.