Introduce Program and State
This commit is contained in:
parent
d77492c0c3
commit
ae5e2c6c73
14 changed files with 643 additions and 777 deletions
|
|
@ -25,26 +25,18 @@
|
|||
pub use iced_native::*;
|
||||
pub use winit;
|
||||
|
||||
pub mod application;
|
||||
pub mod conversion;
|
||||
pub mod settings;
|
||||
|
||||
mod application;
|
||||
mod clipboard;
|
||||
mod mode;
|
||||
mod proxy;
|
||||
|
||||
// We disable debug capabilities on release builds unless the `debug` feature
|
||||
// is explicitly enabled.
|
||||
#[cfg(feature = "debug")]
|
||||
#[path = "debug/basic.rs"]
|
||||
mod debug;
|
||||
#[cfg(not(feature = "debug"))]
|
||||
#[path = "debug/null.rs"]
|
||||
mod debug;
|
||||
|
||||
pub use application::Application;
|
||||
pub use clipboard::Clipboard;
|
||||
pub use debug::Debug;
|
||||
pub use mode::Mode;
|
||||
pub use proxy::Proxy;
|
||||
pub use settings::Settings;
|
||||
|
||||
pub use iced_graphics::Viewport;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue