mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
58 lines
1.7 KiB
Rust
58 lines
1.7 KiB
Rust
mod ability;
|
|
mod admin;
|
|
pub mod agent;
|
|
mod body;
|
|
mod character_state;
|
|
mod chat;
|
|
mod controller;
|
|
mod damage;
|
|
mod energy;
|
|
pub mod group;
|
|
mod inputs;
|
|
mod inventory;
|
|
mod last;
|
|
mod location;
|
|
mod misc;
|
|
mod phys;
|
|
mod player;
|
|
pub mod projectile;
|
|
pub mod skills;
|
|
mod stats;
|
|
mod visual;
|
|
|
|
// Reexports
|
|
pub use ability::{CharacterAbility, CharacterAbilityType, ItemConfig, Loadout};
|
|
pub use admin::{Admin, AdminList};
|
|
pub use agent::{Agent, Alignment};
|
|
pub use body::{
|
|
biped_large, bird_medium, bird_small, critter, dragon, fish_medium, fish_small, golem,
|
|
humanoid, object, quadruped_low, quadruped_medium, quadruped_small, AllBodies, Body, BodyData,
|
|
};
|
|
pub use character_state::{Attacking, CharacterState, StateUpdate};
|
|
// TODO: replace chat::Group functionality with group::Group
|
|
pub use chat::{
|
|
ChatMode, ChatMsg, ChatType, Faction, Group as ChatGroup, SpeechBubble, SpeechBubbleType,
|
|
};
|
|
pub use controller::{
|
|
Climb, ControlAction, ControlEvent, Controller, ControllerInputs, GroupManip, Input,
|
|
InventoryManip, MountState, Mounting,
|
|
};
|
|
pub use damage::{Damage, DamageSource};
|
|
pub use energy::{Energy, EnergySource};
|
|
pub use group::Group;
|
|
pub use inputs::CanBuild;
|
|
pub use inventory::{
|
|
item,
|
|
item::{Item, ItemDrop},
|
|
slot, Inventory, InventoryUpdate, InventoryUpdateEvent, MAX_PICKUP_RANGE_SQR,
|
|
};
|
|
pub use last::Last;
|
|
pub use location::{Waypoint, WaypointArea};
|
|
pub use misc::Object;
|
|
pub use phys::{Collider, ForceUpdate, Gravity, Mass, Ori, PhysicsState, Pos, Scale, Sticky, Vel};
|
|
pub use player::{Player, MAX_MOUNT_RANGE_SQR};
|
|
pub use projectile::Projectile;
|
|
pub use skills::{Skill, SkillGroup, SkillGroupType, SkillSet};
|
|
pub use stats::{Exp, HealthChange, HealthSource, Level, Stats};
|
|
pub use visual::{LightAnimation, LightEmitter};
|