aboutsummaryrefslogtreecommitdiff
path: root/azalea-world/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-world/src')
-rw-r--r--azalea-world/src/lib.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/azalea-world/src/lib.rs b/azalea-world/src/lib.rs
index 8514ce24..eea574c1 100644
--- a/azalea-world/src/lib.rs
+++ b/azalea-world/src/lib.rs
@@ -10,16 +10,7 @@ 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),
-}