A simple Java terminal game inspired by the traditional Achi board game โ a 3ร3 strategy game where two players place and slide their pieces to align three in a row.
This project demonstrates object-oriented programming, clean console UI, and modular Java design.
- ๐ฅ Two players take turns placing three pieces each on a 3ร3 board.
- โ After all pieces are placed, players slide one piece per turn along valid lines.
- ๐ First player to align three in a row wins!
- Java JDK 8 or higher installed
- A terminal / command prompt
# Compile all Java source files
javac src/*.java
# Run the game (replace MainFrame if your main class is different)
java -cp src MainFrame