aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 1aaa9544e75c70ce25df0d132614bfe7315ed44d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod app;
mod bitmap;
mod consts;
mod symmetry;
mod undo;

use app::AppState;

pub fn main() {
    let sdl_context = sdl2::init().unwrap();
    let ttf_context = sdl2::ttf::init().unwrap();
    AppState::init(100, 100, &sdl_context, &ttf_context).run();
}