duster/src/renderer/renderable.rs

4 lines
57 B
Rust
Raw Normal View History

pub trait Renderable {
fn render(&self) -> String;
}