ezu-core 0.2.0

Core types for ezu: tile/world coordinates, deterministic seeding
Documentation
1
2
3
4
5
6
7
8
9
10
//! Core types shared across the ezu workspace.
//!
//! - Tile / world coordinate conversions
//! - Deterministic seeding from world coordinates (for seamless tile rendering)

pub mod coord;
pub mod seed;

pub use coord::{TileId, WorldPos};
pub use seed::world_seed;