From 1581b96bb5ffb6154b4e9815582e1d7f36031cef Mon Sep 17 00:00:00 2001 From: Raphaelsav <94864277+Raphaelsav@users.noreply.github.com> Date: Wed, 10 Apr 2024 16:04:29 +0200 Subject: [PATCH] added Cell class --- src/backend/Cell.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/backend/Cell.java 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; + + } +}