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() {
//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