mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/exe/mod.rs')
| -rw-r--r-- | src/exe/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/exe/mod.rs b/src/exe/mod.rs index 0159b96..e56922a 100644 --- a/src/exe/mod.rs +++ b/src/exe/mod.rs @@ -1,4 +1,5 @@ mod draw; +mod map; mod print; macro_rules! print_err { @@ -30,6 +31,7 @@ fn main() { None => eprintln!("Not enough arguments, valid commands are: draw, print"), Some(s) if s == "print" => print::main(args), Some(s) if s == "draw" => draw::main(args), + Some(s) if s == "map" => map::main(args), Some(s) => eprintln!("Unknown argument {s}, valid commands are: draw, print"), } } |