ck3_history_extractor/display/mod.rs
1/// A submodule that provides [Renderable] trait for objects that can be rendered.
2mod renderer;
3pub use renderer::{GetPath, ProceduralPath, Renderable, Renderer};
4
5/// The graphing submodule that handles the creation of graphs from the game state.
6mod graph;
7pub use graph::{Grapher, TreeNode};
8
9/// A submodule handling the rendering of the timeline page
10mod timeline;
11pub use timeline::{RealmDifference, Timeline};