16 lines
195 B
Rust
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 {}
|