From 28ea07bed97a936d5675dcdf93ae539cdc0a5043 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 1 Oct 2021 20:26:52 -0400 Subject: [PATCH] colors and stuff --- game/src/utilities/map_loader.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 game/src/utilities/map_loader.rs diff --git a/game/src/utilities/map_loader.rs b/game/src/utilities/map_loader.rs new file mode 100644 index 0000000..445f3dd --- /dev/null +++ b/game/src/utilities/map_loader.rs @@ -0,0 +1,6 @@ +use tiled::* + +pub struct Level { + pub map: Map, + +}