This commit is contained in:
Simon Gardling
2022-02-23 15:37:49 -05:00
parent 59e4793a1b
commit e049038813
4 changed files with 28 additions and 7 deletions

View File

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