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;
78pub use chicken::ChickenEntity;
9pub use cow::CowEntity;
10pub use pig::PigEntity;
11pub use sheep::SheepEntity;