mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-10 21:18:36 +00:00
8 lines
143 B
Rust
8 lines
143 B
Rust
mod support;
|
|
|
|
fn main() {
|
|
support::simple_init(file!(), move |_, _ui| {
|
|
// nothing! don't actually do any imgui funtimes
|
|
});
|
|
}
|