slop of code

intermediate push so logan can have access to reset function
This commit is contained in:
Simon O'Shea
2023-08-08 13:10:51 -04:00
parent 219d21173e
commit f825ec9c27
9 changed files with 1039 additions and 8 deletions
@@ -97,7 +97,6 @@ public class LogicGrid
x = x,
y = y
});
;
}
}
@@ -133,4 +132,16 @@ public class LogicGrid
{
return this.cellSize;
}
public void reset()
{
gridArray = new int[width, height];
if (OnGridValueChanged != null)
OnGridValueChanged(this, new OnGridValueChangedEventArgs
{
x = -1,
y = -1
});
}
}