mudroom 0.1.2

A TUI client and server for multiplayer text adventure games.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod component;
pub mod entity;
pub mod id;
pub mod map;

pub use component::Attribute;
pub use component::Check;
pub use component::CheckedDescription;
pub use component::Description;
pub use entity::Entity;
pub use entity::EntityType;
pub use id::next_id;
pub use map::Dungeon;
pub use map::Navigation;
pub use map::Room;
pub use map::Universe;
pub use map::World;