This commit is contained in:
Ninja-Jambon 2024-03-27 11:54:38 +01:00
parent b05b7cd13c
commit 29ce62150e
10 changed files with 153 additions and 37 deletions

View file

@ -381,4 +381,12 @@ public class Universe {
public int[][] copyGrid() {
return this.grid.clone();
}
public int getWidth() {
return this.width;
}
public int getHeight() {
return this.height;
}
}