rename monster.rs to monsters.rs

This commit is contained in:
2024-11-25 07:20:03 +01:00
parent 9776482922
commit 94c787d8c7
5 changed files with 6 additions and 6 deletions

View File

@@ -8,9 +8,9 @@ use crate::artifacts::Artifact;
use crate::artifacts::{Chest, Potion};
use crate::constants::LEVEL_HEIGHT;
use crate::constants::LEVEL_WIDTH;
use crate::monster::Monster;
use crate::monsters::Monster;
#[cfg(test)]
use crate::monster::{Orc, Rat};
use crate::monsters::{Orc, Rat};
use crate::player::Player;
use crate::position::HasPosition;
use crate::position::Position;