add README
All checks were successful
Linux arm64 / Build (push) Successful in 47s

This commit is contained in:
2025-05-19 09:01:44 +00:00
parent 4f2c56a824
commit e9a9916d9d

30
README.md Normal file
View File

@@ -0,0 +1,30 @@
# 3DChess ♟
Super chess engine. Outputs to console, Java Swing and 3D (Lwjgl) !
## Features 🌟
- Views:
- Console
- Java Swing
- OpengGL (3D)
- Audio
- Pgn support (import/export)
- Undo moves support
- AIs:
- DumbAI: just makes some random moves
- HungryAI: tries to eat the biggest piece (no depth, no thinking)
- AlphaBetaAI: plays the best move by searching through all possible moves
## Run 🏃
```
./gradlew run
```
## Run tests 🗣️🔥
```
./gradlew test
```