1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! **mcrs**: A Rust interface for a Minecraft server.
//!
//! Based on [mcpp](https://github.com/rozukke/mcpp).
//!
//! Requires a server running [ELCI](https://github.com/rozukke/elci).
//!
//! ```
//! # use mcrs::Connection;
//! let mut mc = Connection::new().unwrap();
//! mc.post_to_chat("Hello world!").unwrap();
//! ```
/// Types related to [`Chunk`].
/// Types related to [`Heights`].
pub use ;
pub use Chunk;
pub use Connection;
pub use Coordinate;
pub use Coordinate2D;
pub use Error;
pub use Heights;
pub use Size;
pub use Size2D;
type Result<T> = Result;