getHeight and getWidth done

This commit is contained in:
Laure BEL 2024-04-10 17:08:41 +02:00
parent 27c0dadbaf
commit 015af22129
1 changed files with 3 additions and 5 deletions

View File

@ -50,13 +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