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;
@@ -24,6 +24,6 @@ fn main() {
eframe::run_native(
"(Yet-to-be-named) Graphing Software",
eframe::NativeOptions::default(),
Box::new(|cc| Box::new(egui_app::MathApp::new(cc))),
Box::new(|cc| Box::new(math_app::MathApp::new(cc))),
);
}