ChaseAI{}, FleeAI{}, removal of monster/bystander tags

This commit is contained in:
Llywelwyn 2023-08-15 20:04:21 +01:00
parent 91607fb9ce
commit 198486df1d
13 changed files with 234 additions and 187 deletions

View file

@ -8,13 +8,13 @@ mod regen_system;
pub use regen_system::RegenSystem;
mod encumbrance_system;
pub use encumbrance_system::{EncumbranceSystem, CARRY_CAPACITY_PER_STRENGTH};
mod bystander_ai_system;
pub use bystander_ai_system::BystanderAI;
mod monster_ai_system;
pub use monster_ai_system::MonsterAI;
mod adjacent_ai_system;
pub use adjacent_ai_system::AdjacentAI;
mod visible_ai_system;
pub use visible_ai_system::VisibleAI;
mod approach_ai_system;
pub use approach_ai_system::ApproachAI;
mod chase_ai_system;
pub use chase_ai_system::ChaseAI;
mod flee_ai_system;
pub use flee_ai_system::FleeAI;