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 /dungeon/src/player_input.rs | |
| 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 'dungeon/src/player_input.rs')
| -rw-r--r-- | dungeon/src/player_input.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dungeon/src/player_input.rs b/dungeon/src/player_input.rs index 643b014..aa0ef14 100644 --- a/dungeon/src/player_input.rs +++ b/dungeon/src/player_input.rs @@ -1,4 +1,4 @@ -use crate::pos::*; +use crate::pos::Direction; /// Carries information on the player's inputs. /// Allows the game to retrieve player input commands, |