added Cell class

This commit is contained in:
Raphaelsav 2024-04-10 16:04:29 +02:00
parent ec8adfdc6d
commit 1581b96bb5
1 changed files with 11 additions and 0 deletions

11
src/backend/Cell.java Normal file
View File

@ -0,0 +1,11 @@
package backend;
public class Cell {
int x,y,val;
public Cell(int x, int y, int val) {
this.x = x;
this.y = y;
this.val = val;
}
}