diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-14 09:56:40 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-14 10:01:13 -0500 |
| commit | 9a4cd221f8206fb1533937170f47dcd19d574ef1 (patch) | |
| tree | 14d7c270d3f621070f75b878c5df4a7b872c8008 /graphics | |
| parent | Enable more clippy lints (diff) | |
| download | DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.tar.gz DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.tar.bz2 DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.zip | |
Remove wildcard exports/imports
Diffstat (limited to 'graphics')
| -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, |