This commit is contained in:
Simon Gardling
2022-02-23 15:37:58 -05:00
parent e049038813
commit e7583b5497
4 changed files with 43 additions and 41 deletions

View File

@@ -1,8 +1,8 @@
mod egui_app;
// These 2 are needed for rust-analyzer to work in vscode.
mod misc;
mod chart_manager;
mod misc;
// For running the program natively! (Because why not?)
#[cfg(not(target_arch = "wasm32"))]
@@ -15,4 +15,4 @@ fn main() {
..Default::default()
};
eframe::run_native(Box::new(app), options);
}
}