refactor: decouple sim from framework, remove voxel geometry

This commit is contained in:
asrael 2026-02-27 01:22:35 -06:00
parent c538641ec8
commit 5a565844dd
41 changed files with 477 additions and 2407 deletions

View file

@ -10,7 +10,6 @@ pub mod math;
pub mod procgen;
pub mod sim;
pub mod transport;
pub mod voxel;
pub mod world;
use core::panic::PanicInfo;
@ -36,5 +35,4 @@ pub use procgen::{ProcgenParams, generate, generate_rooms};
pub use pxl8::*;
pub use sim::*;
pub use transport::*;
pub use voxel::*;
pub use world::*;