Skip to content
Snippets Groups Projects
Commit 6592e84f authored by steyer's avatar steyer
Browse files

Néhány TODO comment

parent 5b85c295
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ import java.util.List; ...@@ -6,7 +6,7 @@ import java.util.List;
public class Cell { public class Cell {
private boolean alive, aliveNextTurn; private boolean alive, aliveNextTurn;
private List<Cell> neighbours; private List<Cell> neighbours; //TODO iterator
public Cell() { public Cell() {
alive = false; alive = false;
......
...@@ -5,7 +5,7 @@ import java.util.List; ...@@ -5,7 +5,7 @@ import java.util.List;
public class GameBoard { public class GameBoard {
private List<Cell> cells; private List<Cell> cells; //TODO iterator
private int height, width, size; private int height, width, size;
public GameBoard(int height, int width) { public GameBoard(int height, int width) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment