veloren/common/src/comp/mod.rs

25 lines
510 B
Rust
Raw Normal View History

pub mod actor;
pub mod agent;
pub mod animation;
pub mod inputs;
2019-01-02 19:22:01 +00:00
pub mod phys;
pub mod player;
pub mod stats;
2019-01-02 19:22:01 +00:00
// Reexports
pub use actor::Actor;
pub use actor::Body;
pub use actor::HumanoidBody;
pub use actor::QuadrupedBody;
pub use agent::Agent;
pub use animation::Animation;
pub use animation::AnimationInfo;
pub use inputs::Attacking;
pub use inputs::Control;
pub use inputs::Gliding;
pub use inputs::Jumping;
pub use inputs::Respawning;
pub use player::Player;
pub use stats::Dying;
pub use stats::Stats;