veloren/common/src/comp/mod.rs

14 lines
262 B
Rust
Raw Normal View History

pub mod actor;
pub mod agent;
2019-01-02 19:22:01 +00:00
pub mod phys;
pub mod player;
2019-01-02 19:22:01 +00:00
// Reexports
pub use actor::Actor;
pub use actor::Animation;
pub use actor::AnimationHistory;
pub use actor::Body;
pub use actor::HumanoidBody;
pub use agent::{Agent, Control};
pub use player::Player;