Files
fastvoxel/src/lib.rs
2026-03-12 19:25:03 +03:30

16 lines
195 B
Rust

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 {}