| 58 | BuildingScreen::~BuildingScreen() = default; |
| 59 | |
| 60 | void BuildingScreen::begin() |
| 61 | { |
| 62 | auto agentAssignmentPlaceholder = menuform->findControlTyped<Graphic>("AGENT_ASSIGNMENT"); |
| 63 | agentAssignment = menuform->createChild<AgentAssignment>(state); |
| 64 | agentAssignment->init(ui().getForm("city/agentassignment"), |
| 65 | agentAssignmentPlaceholder->Location, agentAssignmentPlaceholder->Size); |
| 66 | agentAssignment->setLocation(building); |
| 67 | } |
| 68 | |
| 69 | void BuildingScreen::pause() {} |
| 70 |
nothing calls this directly
no test coverage detected