Go to file
blackfur d0e038d481 Version bump 2021-04-27 12:41:59 +02:00
.github/workflows Update rust.yml 2021-03-04 13:05:21 +01:00
src Added entity methods 2021-04-16 11:16:32 +02:00
tests Added entity methods 2021-04-16 11:16:32 +02:00
.gitignore Added .vscode to .gitignore, renamed Player function names, added setting function to Player 2021-03-26 17:46:02 +01:00
Cargo.toml Version bump 2021-04-27 12:41:59 +02:00
README.md Version bump 2021-04-27 12:41:59 +02:00

README.md

Minecraft Pi Edition API for Rust

This project ports the MCPI API to rust!

How to install

Simply install this by adding mcpi_api = "0.2.2" to your Cargo.toml

Examples

Hello world!

use mcpi_api::create;
let mut  mc = create("localhost:4711");
mc.post_to_chat("Hello World!")