//! Client application runtime: the world loop and the runtime systems that drive
//! a compiled world. The build / edit / debug / preview paths live in the
//! editor crate.
//! `pub` so the editor crate (which drives a live App via the runtime API) can
//! reach these runtime app items through `concinnity_engine::app::*`.
/// Process-level thread + memory budgets computed at App start.
// Fixed-timestep accumulator advanced before each world step.
pub
/// Long-session drift of process memory against the tracked heap.
pub
// Pipelined frame driver: sim thread + render half + the channel pair.
pub
// Classification of fatal startup failures into a log line plus a sentence for
// the error screen. `pub` so a host binary can report one the same way.
pub
/// The `App` value a host constructs, starts, and steps.
/// Host-memory queries backing the memory budget + the live-usage readout.
// Run the app from compiled binary data: the `cn run` production path. `pub`
// so the editor crate's CLI can dispatch to it.
pub use run;