diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index c9c1bdd..14f4cf5 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -1,6 +1,7 @@ | |||
1 | mod app; | 1 | mod app; |
2 | mod bitmap; | 2 | mod bitmap; |
3 | mod consts; | 3 | mod consts; |
4 | mod dither; | ||
4 | mod symmetry; | 5 | mod symmetry; |
5 | mod undo; | 6 | mod undo; |
6 | mod utils; | 7 | mod utils; |
@@ -10,5 +11,5 @@ use app::AppState; | |||
10 | pub fn main() { | 11 | pub fn main() { |
11 | let sdl_context = sdl2::init().unwrap(); | 12 | let sdl_context = sdl2::init().unwrap(); |
12 | let ttf_context = sdl2::ttf::init().unwrap(); | 13 | let ttf_context = sdl2::ttf::init().unwrap(); |
13 | AppState::init(160, 160, &sdl_context, &ttf_context).run(); | 14 | AppState::init(200, 200, &sdl_context, &ttf_context).run(); |
14 | } | 15 | } |