rusty_flagon_lib 1.0.0

A library for character generation for OSE Classic roleplaying game
Documentation
/// The character's class.
#[derive(Debug, Default, PartialEq, PartialOrd, Eq, Ord, Clone, Copy, Hash)]
pub enum E {
    /// No class.
    #[default]
    None,
    /// The cleric class.
    Cleric,
    /// The dwarf class.
    Dwarf,
    /// The elf class.
    Elf,
    /// The fighter class.
    Fighter,
    /// The halfling class.
    Halfling,
    /// The magic-user class.
    MagicUser,
    /// The thief class.
    Thief,
}