pxl8/pxl8d/src/lib.rs
asrael 8d491612ab feat(gui): add toolbar widget
feat(gui): add grid_select, toggle, panel, status_bar, image widgets
fix(bsp): fill in exterior cells
2026-03-07 07:20:52 -06:00

38 lines
683 B
Rust

#![no_std]
extern crate alloc;
mod allocator;
pub mod bsp;
pub mod chunk;
pub mod log;
pub mod math;
pub mod procgen;
pub mod sim;
pub mod transport;
pub mod world;
use core::panic::PanicInfo;
#[global_allocator]
static ALLOCATOR: allocator::Allocator = allocator::Allocator;
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
loop {}
}
#[allow(dead_code, non_camel_case_types, non_snake_case, non_upper_case_globals)]
pub mod pxl8 {
include!(concat!(env!("OUT_DIR"), "/pxl8.rs"));
}
pub use bsp::*;
pub use chunk::*;
pub use chunk::stream::*;
pub use math::*;
pub use procgen::generate_chunk;
pub use pxl8::*;
pub use sim::*;
pub use transport::*;
pub use world::*;