aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: 14f4cf5802cdda11c1bfae02e4e47356ff3bdeb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod app;
mod bitmap;
mod consts;
mod dither;
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(200, 200, &sdl_context, &ttf_context).run();
}