Cell
data class Cell(var char: Char = ' ', var style: CharacterStyle = CharacterStyle.DEFAULT, var isPlaceholder: Boolean = false)
Represents a single character block on the terminal grid.
Constructors
Link copied to clipboard
constructor(char: Char = ' ', style: CharacterStyle = CharacterStyle.DEFAULT, isPlaceholder: Boolean = false)