Improve window::Position API

This commit is contained in:
Héctor Ramón Jiménez 2021-07-21 18:59:24 +07:00
parent 6793a7e00d
commit 72b3bf95de
No known key found for this signature in database
GPG key ID: 140CC052C94F138E
7 changed files with 121 additions and 16 deletions

View file

@ -1,9 +1,11 @@
//! Configure the window of your application in native platforms.
mod mode;
mod position;
mod settings;
pub mod icon;
pub use icon::Icon;
pub use mode::Mode;
pub use position::Position;
pub use settings::Settings;