orinium_browser/engine/mod.rs
1//! The engine module contains the core components of the Orinium engine,
2//! including the bridge, CSS handling, HTML parsing, input processing,
3//! layout management, rendering model, and tree structure.
4
5pub mod bridge;
6pub mod css;
7pub mod html;
8pub mod input;
9pub mod layouter;
10pub mod renderer_model;
11pub mod tree;