2019-05-12 21:21:18 +00:00
|
|
|
pub mod actor;
|
2019-05-12 21:34:20 +00:00
|
|
|
pub mod agent;
|
2019-01-02 19:22:01 +00:00
|
|
|
pub mod phys;
|
2019-04-29 20:37:19 +00:00
|
|
|
pub mod player;
|
2019-05-13 13:58:01 +00:00
|
|
|
pub mod stats;
|
2019-01-02 19:22:01 +00:00
|
|
|
|
2019-03-04 19:50:26 +00:00
|
|
|
// Reexports
|
2019-05-12 21:34:20 +00:00
|
|
|
pub use actor::Actor;
|
2019-05-12 21:21:18 +00:00
|
|
|
pub use actor::Animation;
|
|
|
|
pub use actor::AnimationHistory;
|
|
|
|
pub use actor::Body;
|
2019-05-12 21:34:20 +00:00
|
|
|
pub use actor::HumanoidBody;
|
2019-05-13 23:43:10 +00:00
|
|
|
pub use actor::QuadrupedBody;
|
2019-05-12 21:34:20 +00:00
|
|
|
pub use agent::{Agent, Control};
|
2019-04-10 17:23:27 +00:00
|
|
|
pub use player::Player;
|
2019-05-13 13:58:01 +00:00
|
|
|
pub use stats::Stats;
|