basic working polygon renderer

This commit is contained in:
2024-06-15 03:03:48 -04:00
parent 219213ee24
commit aa466a248c
23 changed files with 639 additions and 300 deletions

7
src/world/chunk.rs Normal file
View File

@@ -0,0 +1,7 @@
use crate::client::render::voxel::VoxelColor;
use super::component::TrackedGrid;
pub struct Chunk {
grid: TrackedGrid<VoxelColor>
}