egui-test/src/main.rs

14 lines
281 B
Rust
Raw Permalink Normal View History

2021-10-16 21:50:22 +02:00
pub mod matrix;
2021-10-17 22:12:57 +02:00
pub mod sync;
2021-10-16 21:50:22 +02:00
pub mod ui;
use eframe::NativeOptions;
#[cfg(not(target_arch = "wasm32"))]
fn main() {
let app = ui::App::default();
2021-10-25 19:18:51 +02:00
let options = NativeOptions::default();
//options.transparent = true;
2021-10-16 21:50:22 +02:00
eframe::run_native(Box::new(app), options);
}