rusty_flagon_lib 1.0.0

A library for character generation for OSE Classic roleplaying game
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! The public-facing structs and enums.
/// The alignment of a character.
pub mod alignment;
/// A builder for creating characters.
pub mod builder;
/// A character.
pub mod character;
/// The class of a character.
pub mod class;
/// An error that can occur when building a character.
pub mod failed_to;
/// A dice roller.
pub mod roller;