1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![deny(missing_docs)]

//! Core types for the Monster Maker ecosystem.
//!
//! This crate provides the core types usable by other crates in the
//! Monster Maker ecosystem. The crate contains several modules, each
//! one containing the logic for a separate core building block. See
//! individual module documentation for use of each of their respective
//! types.

pub mod monster;
pub mod species;
pub mod r#type;