underworld_core 0.6.3

Small library to either play a game or assist in generating rooms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod characters;
pub mod fixtures;
pub mod game;
pub mod generator;
pub mod inventory;
pub mod items;
pub mod name;
pub mod non_players;
pub mod players;
pub mod rooms;
pub mod stats;
mod utils;

pub use characters::CharacterGeneratorBuilder;
pub use inventory::InventoryGeneratorBuilder;
pub use rooms::{
    ExitGenerationArgs, RoomFixtureGenerationArgs, RoomGeneratorBuilder, RoomNpcGenerationArgs,
};