Increased version to 1.1
This commit is contained in:
parent
e94376468c
commit
5e3c8b4170
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user