Modularize main window

This commit is contained in:
Elias Projahn 2020-10-16 21:24:55 +02:00
parent 56c4268e4d
commit cefd7dad95
30 changed files with 1905 additions and 1526 deletions

11
src/screens/mod.rs Normal file
View file

@ -0,0 +1,11 @@
pub mod ensemble_screen;
pub use ensemble_screen::*;
pub mod person_screen;
pub use person_screen::*;
pub mod work_screen;
pub use work_screen::*;
pub mod recording_screen;
pub use recording_screen::*;