| 34 | AlertScreen::~AlertScreen() = default; |
| 35 | |
| 36 | void AlertScreen::begin() |
| 37 | { |
| 38 | auto agentAssignmentPlaceholder = menuform->findControlTyped<Graphic>("AGENT_ASSIGNMENT"); |
| 39 | agentAssignment = menuform->createChild<AgentAssignment>(state); |
| 40 | agentAssignment->init(ui().getForm("city/agentassignment"), |
| 41 | agentAssignmentPlaceholder->Location, agentAssignmentPlaceholder->Size); |
| 42 | agentAssignment->setLocation(); |
| 43 | } |
| 44 | |
| 45 | void AlertScreen::pause() {} |
| 46 |
nothing calls this directly
no test coverage detected