diff --git a/src/backend/Cell.java b/src/backend/Cell.java new file mode 100644 index 0000000..b4f9374 --- /dev/null +++ b/src/backend/Cell.java @@ -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; + + } +}