blob: 8514ce242f63a0c738cae675a84d1829c2370788 (
plain)
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
|
#![doc = include_str!("../README.md")]
#![feature(error_generic_member_access)]
mod bit_storage;
pub mod chunk_storage;
mod container;
pub mod find_blocks;
pub mod heightmap;
pub mod iterators;
pub mod palette;
mod world;
use std::backtrace::Backtrace;
pub use bit_storage::BitStorage;
pub use chunk_storage::{Chunk, ChunkStorage, PartialChunkStorage, Section};
pub use container::*;
use thiserror::Error;
pub use world::*;
#[derive(Error, Debug)]
pub enum MoveEntityError {
#[error("Entity doesn't exist")]
EntityDoesNotExist(Backtrace),
}
|