character-wizard-cli 0.6.0

Native level-1 SRD character creation CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Canonical character domain model and SRD-derived values.

#[path = "ids.rs"]
mod domain_ids;
#[path = "model.rs"]
mod domain_model;
#[path = "sheet.rs"]
mod domain_sheet;

pub use domain_ids::{BackgroundId, ClassId, Size, SpeciesId};
pub use domain_model::*;
pub use domain_sheet::CharacterSheet;
#[cfg(test)]
pub use domain_sheet::SavingThrow;