2 releases
0.1.1 | Oct 15, 2024 |
---|---|
0.1.0 | Oct 13, 2024 |
363 downloads per month
39KB
1K
SLoC
mcrs
A rust rewrite of mcpp, a library to interface with Minecraft.
let mut mc = mcrs::Connection::new().unwrap();
mc.post_to_chat("Hello world!").unwrap();
TODO
- Update readme
- Add tests
lib.rs
:
mcrs: A Rust interface for a Minecraft server.
Based on mcpp.
Requires a server running ELCI.
let mut mc = Connection::new().unwrap();
mc.post_to_chat("Hello world!").unwrap();