mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-12 22:18:36 +00:00
7 lines
127 B
Rust
7 lines
127 B
Rust
mod support;
|
|
|
|
fn main() {
|
|
let system = support::init(file!());
|
|
system.main_loop(|run, ui| ui.show_demo_window(run));
|
|
}
|