Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sueszli/mastermind
silly little java game
https://github.com/sueszli/mastermind
game-development mastermind-board-game
Last synced: 22 days ago
JSON representation
silly little java game
- Host: GitHub
- URL: https://github.com/sueszli/mastermind
- Owner: sueszli
- License: mit
- Created: 2023-05-24T06:49:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-16T22:39:17.000Z (9 months ago)
- Last Synced: 2024-10-11T18:10:09.806Z (3 months ago)
- Topics: game-development, mastermind-board-game
- Language: Java
- Homepage:
- Size: 1.38 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This game was implemented with the [CodeDraw library](https://github.com/Krassnig/CodeDraw) and serves as a small demo for that project.
```bash
# install java
brew install openjdk# clone repository
git clone https://github.com/sueszli/mastermind/
cd mastermind# run the game
javac -cp ./lib/CodeDraw.jar ./src/Mastermind.java -d ./out
java -cp ./out:./lib/CodeDraw.jar Mastermind
```