plato-mud 0.1.0

PLATO MUD Engine — constraint-theory knowledge rooms with FLUX transference
Documentation
1
2
3
4
5
6
7
8
9
//! PLATO MUD Client binary

fn main() {
    let mut client = plato_mud::client::PlatoClient::new("localhost:7777");
    if let Err(e) = client.run_interactive() {
        eprintln!("Client error: {}", e);
        std::process::exit(1);
    }
}