aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index a0d8a13..e40a40e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,9 @@
+#[macro_use]
+extern crate log;
+
pub mod button;
pub mod config;
+pub mod dimension_indicator;
pub mod editor;
pub mod grid;
pub mod map_data;
@@ -17,6 +21,8 @@ use transform::Transform;
pub const CONFIG_FILE: &str = "config.ron";
fn main() {
+ pretty_env_logger::init();
+
let (mut rl, thread) = raylib::init().resizable().title("Hello there!").build();
rl.set_target_fps(120);
rl.set_exit_key(None);