Set getWidth and getHeight

This commit is contained in:
l.dupuis-burtin 2024-04-10 15:22:04 +02:00
parent f2797a4324
commit ec8adfdc6d
1 changed files with 2 additions and 2 deletions

View File

@ -51,12 +51,12 @@ public class Simulator extends Thread {
public int getWidth() {
//TODO : replace with proper return
return 0;
return LINE_NUM;
}
public int getHeight() {
//TODO : replace with proper return
return 0;
return COL_NUM;
}
//Should probably stay as is