chore: multi-window example

This commit is contained in:
Ashley Wulber 2023-12-07 16:46:33 -05:00 committed by Ashley Wulber
parent c66e4aafd0
commit 685a0543cd
4 changed files with 179 additions and 2 deletions

View file

@ -0,0 +1,9 @@
// Copyright 2022 System76 <info@system76.com>
// SPDX-License-Identifier: MPL-2.0
mod window;
pub use window::*;
pub fn main() -> cosmic::iced::Result {
cosmic::app::run::<MultiWindow>(Default::default(), ())
}