at least we're now sending a character

This commit is contained in:
Yehowshua Immanuel 2024-12-24 18:24:55 -05:00
parent 24710414bd
commit f992a24719
9 changed files with 203 additions and 32 deletions

View file

@ -19,7 +19,7 @@ pub enum TerminalDownMsg {
#[derive(Serialize, Deserialize, Debug, PartialEq, Clone)]
#[serde(crate = "serde")]
pub struct TerminalScreen {
pub cols : usize,
pub rows : usize,
pub cols : u16,
pub rows : u16,
pub content : String,
}