lifelike
lifelike copied to clipboard
Investigate using typed arrays for cells
Using a UInt8Array or another typed array may provide performance improvements, especially on large grids.
Currently, the cells array consists of a 2D Array - that is, an Array of Arrays, one per row. The logic of the app would need to be refactored to use a single typed array.