mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-13 06:28:36 +00:00
13 lines
182 B
Rust
13 lines
182 B
Rust
#[macro_use]
|
|
extern crate glium;
|
|
extern crate imgui;
|
|
extern crate time;
|
|
|
|
mod support;
|
|
|
|
fn main() {
|
|
support::main_with_frame(|frame| {
|
|
frame.show_test_window();
|
|
});
|
|
}
|