| 4 | } |
| 5 | |
| 6 | export interface MatrixColumn { |
| 7 | cells: MatrixCell[]; |
| 8 | head: number; |
| 9 | spaceRemaining: number; |
| 10 | lengthRemaining: number; |
| 11 | updateSpeed: number; |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Creates a new MatrixColumn with initialized values. |
nothing calls this directly
no outgoing calls
no test coverage detected