Files
mspaint/src/main.rs

8 lines
98 B
Rust
Raw Normal View History

2026-02-23 17:43:03 +08:00
mod image_button;
2026-02-24 22:20:06 +08:00
mod paint;
mod mouse_area;
2026-02-23 17:43:03 +08:00
2026-02-24 22:20:06 +08:00
pub fn main() -> iced::Result {
paint::main()
2026-02-23 17:43:03 +08:00
}