Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/publicarray/mines
Minesweeper written in Java. First code provided by: http://zetcode.com/tutorials/javagamestutorial/minesweeper/
https://github.com/publicarray/mines
java minesweeper
Last synced: about 1 month ago
JSON representation
Minesweeper written in Java. First code provided by: http://zetcode.com/tutorials/javagamestutorial/minesweeper/
- Host: GitHub
- URL: https://github.com/publicarray/mines
- Owner: publicarray
- License: mit
- Created: 2013-09-20T21:06:21.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-07T07:21:48.000Z (almost 10 years ago)
- Last Synced: 2024-10-16T05:34:55.945Z (3 months ago)
- Topics: java, minesweeper
- Language: Java
- Homepage:
- Size: 718 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
Minesweeper by Jared Rankin [@bigbluecloud](https://github.com/bigbluecloud) and Sebastian Schmidt [@publicarray](https://github.com/publicarray)
To open the programm open the Mine.java file. It is the main class for the program.
## How to create an executable jar
```sh
javac Mines.java
jar cfm mines.jar Manifest.txt *.class *.png
java -jar mines.jar
```