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() {
//TODO : replace with proper return
return 0;
return COL_NUM;
}
public int getHeight() {
//TODO : replace with proper return
return 0;
return LINE_NUM;
}
//Should probably stay as is
@ -121,9 +118,6 @@ public class Simulator extends Thread {
* then the cell becomes alive
*/
}
/*