final bei private int number entfernt
parent
9d30065f9a
commit
27f1951fb5
|
@ -9,7 +9,7 @@ public class HitoriCell {
|
||||||
public enum CellState {
|
public enum CellState {
|
||||||
GRAY, WHITE, BLACK
|
GRAY, WHITE, BLACK
|
||||||
}
|
}
|
||||||
private final int number;
|
private int number;
|
||||||
private CellState state;
|
private CellState state;
|
||||||
|
|
||||||
public HitoriCell(int number) {
|
public HitoriCell(int number) {
|
||||||
|
@ -29,4 +29,8 @@ public class HitoriCell {
|
||||||
this.state = state;
|
this.state = state;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setNumber(int number) {
|
||||||
|
this.number = number;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue