veloren/common/src/comp/mod.rs
Joshua Barretto 2c650f9cff Added basic agent AI
Former-commit-id: bb17edc8f2027c0c63c6a3ef0fc80c7a68c9aa05
2019-04-17 01:39:39 +01:00

11 lines
195 B
Rust

pub mod agent;
pub mod character;
pub mod player;
pub mod phys;
// Reexports
pub use agent::{Agent, Control};
pub use character::Character;
pub use player::Player;
pub use character::Animation;