| 14 | |
| 15 | #[derive(Debug, Default)] |
| 16 | pub struct TechTreeLayout { |
| 17 | pub description: Rect, |
| 18 | pub tree: Rect, |
| 19 | pub current_research: Rect, |
| 20 | pub nodes: Vec<Rect>, |
| 21 | pub edges: Vec<EdgeLayout>, |
| 22 | } |
| 23 | |
| 24 | #[derive(Debug, Default)] |
| 25 | pub struct EdgeLayout { |
nothing calls this directly
no outgoing calls
no test coverage detected