duster/src/renderer/renderable.rs
2020-04-11 19:11:14 -04:00

4 lines
57 B
Rust

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