game_features 0.8.3

Various helpful constructs for game development. See the github repository for detailed instructions.
Documentation
//! A crate providing advanced and general features for games.
//! It can be used just as much for simple ascii games than for full distributed mmorpg games.

#![deny(missing_docs)]

#[macro_use]
extern crate serde;
#[macro_use]
extern crate derive_new;
#[macro_use]
extern crate derive_builder;

mod effector;
mod faction;
mod inventory;
mod item;
mod item_transition;
mod loot_tree;
mod permissions;
mod skill;
mod stat;
mod statistics;
mod tier;
mod unlock;
mod user;
mod user_group;
mod user_management;

pub use self::effector::*;
pub use self::faction::*;
pub use self::inventory::*;
pub use self::item::*;
pub use self::item_transition::*;
pub use self::loot_tree::*;
pub use self::skill::*;
pub use self::stat::*;
pub use self::tier::*;
pub use self::unlock::*;
pub use self::user::*;
pub use self::user_group::*;