mist 1.3.2

minimal, improved speedrun timer
// starts application by instantiating App and running it

// comment the below line to get printing on windows
#![windows_subsystem = "windows"]
extern crate sdl2;

mod app;
mod components;
mod config;
mod render;
mod splits;
mod timing;
use app::App;

fn main() {
    let context = sdl2::init().expect("could not initialize SDL");
    let mut app = App::init(context);
    app.run();
}