Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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/

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
```