1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Player bindings & utilities.
//!
//! Players are a specific type of agent.

mod guild;
mod prof;
mod reward;
mod spec;
mod tag;

pub use self::guild::*;
pub use self::prof::*;
pub use self::reward::*;
pub use self::spec::*;
pub use self::tag::*;