1pub mod wgpu;
2pub mod fifo;
3pub mod double_buffer;
4pub mod color;
5
6pub use sketchbook;
7
8pub mod prelude {
9 pub use sketchbook::*;
10 pub use sketchbook::aspects::*;
11 pub use sketchbook::ream::*;
12 pub use sketchbook::aspects::draw::*;
13
14 pub use sketchbook::aspects::update::SketchExt as UpdateExt;
15 pub use sketchbook::aspects::draw::SketchExt as DrawExt;
16 pub use sketchbook::aspects::mouse::SketchExt as MouseExt;
17 pub use sketchbook::aspects::keyboard::SketchExt as KeyboardExt;
18
19 pub use super::wgpu;
20 pub use super::wgpu::Page;
21 pub type Color = palette::Srgba<u8>;
22
23 pub use winit::event::MouseButton;
24}