blob: f960a50e841a6bd1fcd252e41d1bd1bcce3f9e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#[derive(Debug)]
pub struct Terminal;
impl Terminal {
pub fn new() -> Self {
todo!()
}
pub fn get_width(&self) -> i64 {
todo!()
}
pub fn get_height(&self) -> i64 {
todo!()
}
}
|