//! Core Yog types and handles shared across all API modules.
//!//! Kept tiny and dependency-free: every other `yog-*` crate builds on this, and
//! the facade [`yog-api`] re-exports it.
modserver;pubuseserver::Server;/// A block position in the world.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]pubstructBlockPos{pubx:i32,
puby:i32,
pubz:i32,
}implBlockPos{pubconstfnnew(x:i32, y:i32, z:i32)->Self{Self{ x, y, z }}}