mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 21:48:36 +00:00
12 lines
243 B
Rust
12 lines
243 B
Rust
mod support;
|
|
|
|
const CLEAR_COLOR: [f32; 4] = [0.2, 0.2, 0.2, 1.0];
|
|
|
|
fn main() {
|
|
support::run("test_window.rs".to_owned(), CLEAR_COLOR, |ui, _, _| {
|
|
let mut open = true;
|
|
ui.show_demo_window(&mut open);
|
|
open
|
|
});
|
|
}
|