veloren/common/src/comp/mod.rs

23 lines
589 B
Rust
Raw Normal View History

2019-06-29 18:52:20 +00:00
mod action_state;
mod agent;
mod animation;
2019-06-28 23:42:51 +00:00
mod body;
mod controller;
mod inputs;
2019-06-28 23:42:51 +00:00
mod inventory;
mod phys;
mod player;
mod stats;
2019-01-02 19:22:01 +00:00
// Reexports
2019-06-29 18:52:20 +00:00
pub use action_state::ActionState;
pub use agent::Agent;
pub use animation::{Animation, AnimationInfo};
2019-06-30 11:48:28 +00:00
pub use body::{humanoid, quadruped, quadruped_medium, Body};
2019-06-09 14:20:20 +00:00
pub use controller::Controller;
2019-06-30 02:13:34 +00:00
pub use inputs::{Attacking, Gliding, Jumping, MoveDir, Wielding, OnGround, Respawning, Rolling};
2019-06-28 23:42:51 +00:00
pub use inventory::{item, Inventory};
pub use phys::{ForceUpdate, Ori, Pos, Vel};
pub use player::Player;
pub use stats::{Dying, HealthSource, Stats};