| 77 | Colour{54, 74, 200}, Colour{143, 15, 178}}; |
| 78 | |
| 79 | InfiltrationScreen::InfiltrationScreen(sp<GameState> state) |
| 80 | : Stage(), menuform(ui().getForm("city/infiltration")), state(state) |
| 81 | { |
| 82 | for (int i = 0; i < 10; i++) |
| 83 | { |
| 84 | shown_org_names[i] = menuform->findControlTyped<Label>(format("ORG_NAME_%d", i)).get(); |
| 85 | shown_orgs[i] = nullptr; |
| 86 | } |
| 87 | graph = menuform->findControlTyped<Graphic>("GRAPH"); |
| 88 | } |
| 89 | |
| 90 | InfiltrationScreen::~InfiltrationScreen() = default; |
| 91 |