From 50333a6f41c7eaf4d3799bed3a257fe9c6979294 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Wed, 2 Mar 2022 23:51:20 -0500 Subject: [PATCH] add comment --- src/egui_app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/egui_app.rs b/src/egui_app.rs index 5c6e0dd..06fab9f 100644 --- a/src/egui_app.rs +++ b/src/egui_app.rs @@ -125,6 +125,7 @@ pub struct MathApp { // Contains the list of Areas calculated (the vector of f64) and time it took for the last frame (the Duration). Stored in a Tuple. last_info: (Vec, Duration), + // Stores Settings (pretty self explanatory) settings: AppSettings, }