Increased version to 1.1

This commit is contained in:
Kai S. K. Engelbart 2019-10-07 22:06:48 +02:00
parent e94376468c
commit 5e3c8b4170
Signed by: kske
GPG Key ID: 8BEB13EC5DF7EF13
2 changed files with 2 additions and 3 deletions

View File

@ -46,8 +46,7 @@ public class Board extends JPanel {
static {
icons = new HashMap<>();
final String[] names = { "mine2", "mine4", "tile", "tile3" };
for (String name : names) {
for (String name : new String[] { "mine2", "mine4", "tile", "tile3" }) {
icons.put(name, TextureLoader.loadScaledImage(name, tileSize));
}
}

View File

@ -30,7 +30,7 @@ import javax.swing.UIManager;
*/
public class Minesweeper {
private static final String VERSION = "1.0";
private static final String VERSION = "1.1";
private JFrame mframe;