mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 06:16:04 +00:00
* start adding World::find_block * keep working on find_block * BlockStates * fix sorting * update examples that use find_one_block * azalea_block::properties * fix tests * add a gotoblock command to testbot
26 lines
577 B
Rust
26 lines
577 B
Rust
#![doc = include_str!("../README.md")]
|
|
#![feature(int_roundings)]
|
|
#![feature(error_generic_member_access)]
|
|
#![feature(provide_any)]
|
|
|
|
mod bit_storage;
|
|
mod chunk_storage;
|
|
mod container;
|
|
pub mod entity;
|
|
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),
|
|
}
|