diff options
| author | Arne Dußin | 2020-11-10 18:52:08 +0100 |
|---|---|---|
| committer | Arne Dußin | 2020-11-10 18:52:08 +0100 |
| commit | 178d716232468e5ae3292f39ccc5abd9c147094e (patch) | |
| tree | f262ee32f8d7407a460c578c0f027f5cc3f919cb /src/main.rs | |
| parent | f2caebd11512fce214338b054c1b061b86d84aee (diff) | |
| download | graf_karto-178d716232468e5ae3292f39ccc5abd9c147094e.tar.gz graf_karto-178d716232468e5ae3292f39ccc5abd9c147094e.zip | |
Add dimension indicator without direct value editing
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 6 |
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); |
