Set getWidth and getHeight
This commit is contained in:
parent
f2797a4324
commit
ec8adfdc6d
|
|
@ -51,12 +51,12 @@ public class Simulator extends Thread {
|
||||||
|
|
||||||
public int getWidth() {
|
public int getWidth() {
|
||||||
//TODO : replace with proper return
|
//TODO : replace with proper return
|
||||||
return 0;
|
return LINE_NUM;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getHeight() {
|
public int getHeight() {
|
||||||
//TODO : replace with proper return
|
//TODO : replace with proper return
|
||||||
return 0;
|
return COL_NUM;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Should probably stay as is
|
//Should probably stay as is
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue