Skip to main content

steel_core/entity/entities/mobs/passive/
mod.rs

1//! Passive entity implementations.
2/// Those mobs are passive creatures that run away when attacked by a player.
3mod chicken;
4mod cow;
5mod pig;
6mod sheep;
7
8pub use chicken::ChickenEntity;
9pub use cow::CowEntity;
10pub use pig::PigEntity;
11pub use sheep::SheepEntity;