summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: f997c0699b368c5c52a368a2c5d4247a62583320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod rusbtmc;
mod support;
mod testbench;

fn main() {
    let system = support::init(file!());
    let mut bench = testbench::Bench::new();

    system.main_loop(move |run, ui| {
        // ui.show_demo_window(run);
        bench.draw(run, ui);
    });
}