ableos/ableos/src/experiments/y_compositor/compositor.rs

13 lines
175 B
Rust
Raw Normal View History

pub struct Compositor;
2022-01-07 16:31:47 +00:00
impl Compositor {
pub fn new() -> Self {
Self
}
}
impl Default for Compositor {
fn default() -> Self {
Self::new()
2022-01-07 16:31:47 +00:00
}
}