ffxii-tza-auto-notes/src/main.rs

20 lines
315 B
Rust
Raw Normal View History

2022-03-06 09:11:58 +00:00
#![windows_subsystem = "windows"]
2022-03-05 23:26:14 +00:00
use anyhow::Result;
2022-03-06 09:11:58 +00:00
2022-03-05 23:26:14 +00:00
use crate::game_state::GameState;
2022-03-06 09:11:58 +00:00
use crate::notes::Notes;
2022-03-05 23:26:14 +00:00
use crate::notes_state::NotesState;
2022-03-06 09:11:58 +00:00
mod app;
2022-03-05 23:26:14 +00:00
mod notes;
mod game_state;
mod notes_state;
mod util;
2022-03-06 09:11:58 +00:00
mod widget;
2022-03-05 23:26:14 +00:00
fn main() -> Result<()> {
2022-03-06 09:11:58 +00:00
let app = crate::app::App::default();
app.launch()
2022-03-05 23:26:14 +00:00
}