RandomSec/src/main/java/com/metaweb/gridlock/model/Row.java

15 lines
270 B
Java
Raw Normal View History

package com.metaweb.gridlock.model;
import java.util.ArrayList;
import java.util.List;
public class Row {
public boolean flagged;
public boolean starred;
public List<Cell> cells;
public Row(int cellCount) {
cells = new ArrayList<Cell>();
}
}