1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use io;
use Write;
use Duration;
use ThreadRng;
/// Terminal dimensions and timing context shared across all components.
/// A self-rendering UI element.
///
/// Each component owns its visual state (positions, reveal progress, etc.)
/// and knows how to draw itself into a terminal writer. The wizard loop
/// acts as a thin compositor, calling `render` on each component in
/// z-order.
// Re-exported once utility modules land here in BLIZZ-10.
// For now, pull Size from a local stub so the crate compiles.