veloren/common/src/comp/mod.rs

12 lines
232 B
Rust
Raw Normal View History

pub mod agent;
pub mod character;
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 agent::{Agent, Control};
pub use character::Animation;
pub use character::AnimationHistory;
pub use character::Character;
pub use player::Player;