Change Grid data structure to List #44
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
make the grid a list which gets accessed and changed through accessor utility method.
Perhaps make it its own class of CellMap which internally carries a list but can get accessed through an x,y coordinate.
Every cell thus is located through:
created branch
44-change-grid-data-structure-to-list
mentioned in merge request !12
necessary methods:
nice to have methods:
Implementation:
List<List<Cell>> map
to classGrid
inSimulation
closed via merge request !12
mentioned in commit
9c37f87045
marked this issue as related to #50