mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
23 lines
589 B
Rust
23 lines
589 B
Rust
mod action_state;
|
|
mod agent;
|
|
mod animation;
|
|
mod body;
|
|
mod controller;
|
|
mod inputs;
|
|
mod inventory;
|
|
mod phys;
|
|
mod player;
|
|
mod stats;
|
|
|
|
// Reexports
|
|
pub use action_state::ActionState;
|
|
pub use agent::Agent;
|
|
pub use animation::{Animation, AnimationInfo};
|
|
pub use body::{humanoid, quadruped, quadruped_medium, Body};
|
|
pub use controller::Controller;
|
|
pub use inputs::{Attacking, Gliding, Jumping, MoveDir, Wielding, OnGround, Respawning, Rolling};
|
|
pub use inventory::{item, Inventory};
|
|
pub use phys::{ForceUpdate, Ori, Pos, Vel};
|
|
pub use player::Player;
|
|
pub use stats::{Dying, HealthSource, Stats};
|