summaryrefslogtreecommitdiffstats
path: root/runtime/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/src/lib.rs')
-rw-r--r--runtime/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs
index 50abf7b2..32ed14d8 100644
--- a/runtime/src/lib.rs
+++ b/runtime/src/lib.rs
@@ -60,6 +60,7 @@ mod debug;
#[cfg(not(feature = "debug"))]
#[path = "debug/null.rs"]
mod debug;
+mod screenshot;
pub use iced_core as core;
pub use iced_futures as futures;
@@ -68,4 +69,5 @@ pub use command::Command;
pub use debug::Debug;
pub use font::Font;
pub use program::Program;
+pub use screenshot::{CropError, Screenshot};
pub use user_interface::UserInterface;