basalt-api 0.2.1

Public plugin API for the Basalt Minecraft server: traits, components, events, and the plugin registration system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! World access: block states, collision, block entities, chunk storage.
//!
//! This module is the plugin-facing entry point for all world-related
//! types. Block constants, block entity types, collision math, and the
//! [`WorldHandle`](handle::WorldHandle) trait live here. The runtime
//! `World` struct, chunk storage, and persistence live in `basalt-world`
//! (which depends on this crate for the shared types).

pub mod block;
pub mod block_entity;
pub mod collision;
pub mod handle;