Added initial window module functionality. (#57)

This commit is contained in:
bicarlsen 2024-07-23 09:35:07 +02:00 committed by GitHub
parent 125136ae79
commit 9c3cd94275
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 931 additions and 29 deletions

View file

@ -92,6 +92,12 @@ pub mod event;
#[cfg(feature = "core")]
pub mod core;
#[cfg(feature = "dpi")]
pub mod dpi;
#[cfg(feature = "window")]
pub mod window;
pub use error::Error;
pub(crate) type Result<T> = std::result::Result<T, Error>;