bones3_core 0.4.0

The core functionality for the Bones Cubed plugin for Bevy.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Contains the implementation for VoxelWorld data storage and manipulation.
//!
//! This module only refers to the current in-memory state of the world.
//! Unloaded sections of the world must be loaded before they can be properly
//! manipulated.

mod chunk;
pub(crate) mod chunk_pointers;
mod data;

pub use chunk::*;
pub use data::*;