18 lines
256 B
Rust
18 lines
256 B
Rust
use iced::Application;
|
|
use iced::settings::Settings;
|
|
|
|
mod palette;
|
|
mod app;
|
|
mod lyrics;
|
|
mod styles;
|
|
mod file_select;
|
|
mod load_song;
|
|
mod peripheries;
|
|
mod editor;
|
|
mod player;
|
|
mod controls;
|
|
|
|
fn main() {
|
|
app::DelyriumApp::run(Settings::default()).unwrap();
|
|
}
|