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

use app::AppState;

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