mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-05 21:18:11 +08:00
4 lines
39 B
Rust
4 lines
39 B
Rust
|
pub trait Draw {
|
||
|
fn draw(&self);
|
||
|
}
|