minor comment adjustment

This commit is contained in:
Baipyrus 2022-06-06 21:54:02 +02:00
parent 8d46466fdf
commit a13be5ee3b

View File

@ -1,5 +1,5 @@
class Cell {
boolean state; // Indicator for being either "alive" (=true) or "dead" (=false)
boolean state; // Indicator for being either "alive" (=true;=path) or "dead" (=false;=wall)
int x, y; // Remember what 2D-Coordinates each Cell has
Cell(int i, int j) {