Draft new iced_graphics crate 🎉
This commit is contained in:
parent
d4743183d4
commit
05af8d00d4
100 changed files with 861 additions and 1755 deletions
15
graphics/src/lib.rs
Normal file
15
graphics/src/lib.rs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
mod defaults;
|
||||
mod primitive;
|
||||
mod renderer;
|
||||
mod widget;
|
||||
|
||||
pub mod backend;
|
||||
pub mod triangle;
|
||||
|
||||
#[doc(no_inline)]
|
||||
pub use widget::*;
|
||||
|
||||
pub use backend::Backend;
|
||||
pub use defaults::Defaults;
|
||||
pub use primitive::Primitive;
|
||||
pub use renderer::Renderer;
|
||||
Loading…
Add table
Add a link
Reference in a new issue