grue 0.1.0

Various tools and algorithms for building role-playing and adventure games
Documentation
extern crate indextree;
extern crate rand;
extern crate toml;
#[macro_use]
extern crate serde_derive;
extern crate regex;
extern crate uuid;

pub mod ability;
pub mod combat;
pub mod dialogue;
pub mod error;
pub mod faction;
pub mod generation;
pub mod health;
pub mod inventory;
pub mod loot;
pub mod perception;
pub mod plot;
pub mod save;