This commit is contained in:
Raphaelsav 2024-04-10 17:20:27 +02:00
parent 0113f48315
commit 5aee7b03e7
1 changed files with 3 additions and 10 deletions

View File

@ -1,21 +1,14 @@
package backend;
public class Cell {
int x,y,val;
int val;
private Simulator mySimu;
public Cell(int x, int y, int val) {
this.x = x;
this.y = y;
public Cell(int val) {
this.val = val;
}
public int getX() {
return x;
}
public int getY() {
return x;
}
public int getVal() {
return val;
}