mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2026-01-31 19:06:41 +01:00
13 lines
200 B
Rust
13 lines
200 B
Rust
use crate::*;
|
|
|
|
impl Draw<TuiOut> for u64 {
|
|
fn draw (&self, _to: &mut TuiOut) {
|
|
todo!()
|
|
}
|
|
}
|
|
|
|
impl Draw<TuiOut> for f64 {
|
|
fn draw (&self, _to: &mut TuiOut) {
|
|
todo!()
|
|
}
|
|
}
|