mod application;
use iced::Application;
fn main() -> iced::Result {
let window_settings = iced::window::Settings {
position: iced::window::Position::Centered,
size: (512, 300),
min_size: None,
max_size: None,
resizable: false,
decorations: false,
transparent: true,
always_on_top: true,
icon: None,
};
let settings = iced::Settings {
window: window_settings,
..Default::default()
};
application::State::run(settings)
}