mist 1.2.7

minimal, improved speedrun timer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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 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();
}