added Cell class
This commit is contained in:
parent
ec8adfdc6d
commit
1581b96bb5
|
|
@ -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;
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue