Blacksite/crates/editor_ui/src/lib.rs
Rbanh 53dc1e44d8
Some checks are pending
CI / Format, lint, test, build (push) Waiting to run
feat: add production UI gallery and inspector system
2026-07-18 12:05:26 -04:00

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;