veloren/common/src/comp/mod.rs

27 lines
656 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-07-21 16:50:13 +00:00
mod visual;
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-07-21 12:42:45 +00:00
pub use body::{humanoid, object, quadruped, quadruped_medium, Body};
2019-06-09 14:20:20 +00:00
pub use controller::Controller;
pub use inputs::{
Attacking, CanBuild, Gliding, Jumping, MoveDir, OnGround, Respawning, Rolling, Wielding,
};
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};
2019-07-21 16:50:13 +00:00
pub use visual::LightEmitter;