refactoring

This commit is contained in:
Simon Gardling
2022-04-01 02:18:17 -04:00
parent 6d953381aa
commit 06d5a32d09
4 changed files with 145 additions and 147 deletions

View File

@@ -5,9 +5,9 @@
extern crate static_assertions;
mod consts;
mod egui_app;
mod function;
mod hashmap_helper;
mod math_app;
mod misc;
mod parsing;
mod suggestions;
@@ -32,7 +32,7 @@ cfg_if::cfg_if! {
tracing::info!("Finished initializing!");
tracing::info!("Starting App...");
eframe::start_web("canvas", Box::new(|cc| Box::new(egui_app::MathApp::new(cc))))
eframe::start_web("canvas", Box::new(|cc| Box::new(math_app::MathApp::new(cc))))
}
}
}