1pub use blinksy::layout; 2pub use blinksy::layout2d; 3 4pub struct DummyLayout; 5 6impl layout::Layout2d for DummyLayout { 7 const PIXEL_COUNT: usize = 0; 8 9 fn shapes() -> impl Iterator<Item = layout::Shape2d> { 10 [].into_iter() 11 } 12}