meteo_engine/src/sig/Board.java

15 lines
279 B
Java
Raw Normal View History

2021-09-16 06:04:45 +00:00
package sig;
import java.util.List;
public class Board {
List<BlockClump> blockData;
int width;
int height;
public Board(int width,int height) {
this.width=width;
this.height=height;
this.blockData = new ArrayList<BlockClump>();
}
}