width and height

This commit is contained in:
Paul EWING 2024-04-10 17:08:02 +02:00
parent 88bff8bda9
commit 4ea6d4d36e
1 changed files with 2 additions and 8 deletions

View File

@ -50,14 +50,11 @@ public class Simulator extends Thread {
} }
public int getWidth() { public int getWidth() {
//TODO : replace with proper return return COL_NUM;
return 0;
} }
public int getHeight() { public int getHeight() {
//TODO : replace with proper return return LINE_NUM;
return 0;
} }
//Should probably stay as is //Should probably stay as is
@ -121,9 +118,6 @@ public class Simulator extends Thread {
* then the cell becomes alive * then the cell becomes alive
*/ */
} }
/* /*