Initialize Minecraft text generator project with basic structure and CLI functionality

This commit is contained in:
2026-03-23 00:56:19 +01:00
commit 55d730d542
20 changed files with 900 additions and 0 deletions

13
crates/lib/src/models.rs Normal file
View File

@@ -0,0 +1,13 @@
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum VoxelType {
Body,
Outline,
Shadow,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct Point3D {
pub x: u32,
pub y: u32,
pub z: u32,
}