mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-12 05:58:35 +00:00
10 lines
172 B
Rust
10 lines
172 B
Rust
mod support;
|
|
|
|
fn main() {
|
|
let system = support::init(file!());
|
|
|
|
system.main_loop(move |_, _ui| {
|
|
// nothing! don't actually do any imgui funtimes
|
|
});
|
|
}
|