diff options
Diffstat (limited to 'graphics/src/render.rs')
| -rw-r--r-- | graphics/src/render.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/graphics/src/render.rs b/graphics/src/render.rs index bfd9e37..dff09df 100644 --- a/graphics/src/render.rs +++ b/graphics/src/render.rs @@ -1,8 +1,10 @@ use std::{f32, io::Write, time::Duration}; use dungeon::{ - Direction, Dungeon, Entity, EntityKind, Floor, Item, MAP_SIZE, PLAYER_INVENTORY_SIZE, - Player, Pos, Tile, + Dungeon, + entity::{Entity, EntityKind, Item, PLAYER_INVENTORY_SIZE, Player}, + map::{Floor, MAP_SIZE, Tile}, + pos::{Direction, Pos}, }; use raylib::{ RaylibHandle, RaylibThread, |