lwmud 0.1.0

Lwmud is an asynchronous engine for text-based games.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod builder;
mod client;
mod error;
mod server;
mod verb;

pub use crate::builder::MudServerBuilder;
pub use crate::error::MudError;
pub use crate::verb::Verb;
pub use crate::verb::VerbContext;
pub use crate::server::hooks::Hook;