package dev.kske.minesweeper; /** * Project: Minesweeper
* File: BoardConfig.java
* Created: 01.04.2019
* Author: Kai S. K. Engelbart */ public class BoardConfig { public final int width, height, mines; public BoardConfig(int width, int height, int mines) { this.width = width; this.height = height; this.mines = mines; } }