15 lines
270 B
Java
15 lines
270 B
Java
|
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>();
|
||
|
}
|
||
|
}
|