diff --git a/src/backend/Cell.java b/src/backend/Cell.java index 3a523ba..b6cc98f 100644 --- a/src/backend/Cell.java +++ b/src/backend/Cell.java @@ -1,3 +1,5 @@ +//Represents a single cell in the grid + package backend; public class Cell { @@ -7,10 +9,12 @@ public class Cell { this.value = value; } + //Return the current value of the cell public int getValue() { return value; } + //Set the new value of the cell public void setValue(int value) { this.value = value; }