messy state

This commit is contained in:
2026-03-12 19:25:03 +03:30
commit a47f1f9818
30 changed files with 2791 additions and 0 deletions

15
src/lib.rs Normal file
View File

@@ -0,0 +1,15 @@
use godot::prelude::*;
mod voxel;
mod world;
mod chunk;
mod editor;
mod generation;
mod meshing;
mod rendering;
struct FastVoxel;
#[gdextension]
unsafe impl ExtensionLibrary for FastVoxel {}