mcrs 0.2.1

Interface with a local Minecraft server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# mcrs

A rust rewrite of [mcpp](https://github.com/rozukke/mcpp), a library to
interface with Minecraft.

Requires a server running [ELCI](https://github.com/rozukke/elci).

```rs
let mut mc = mcrs::Connection::new().unwrap();
mc.post_to_chat("Hello world!").unwrap();
```