13 lines
422 B
Rust
13 lines
422 B
Rust
//! Production egui presentation shared by the Blacksite editor and lightweight UI gallery.
|
|
//!
|
|
//! This crate owns rendering, deterministic geometry, and action-returning view contracts. It does
|
|
//! not own a Bevy world, project state, authored-document publication, scene mutations, or content
|
|
//! processing.
|
|
|
|
pub mod design_system;
|
|
pub mod fonts;
|
|
pub mod inspector;
|
|
pub mod materials;
|
|
pub mod renderer;
|
|
pub mod theme;
|