(self)
| 145 | ] |
| 146 | |
| 147 | def update(self) -> bool: |
| 148 | for event in pygame.event.get(): |
| 149 | if event.type == pygame.QUIT: |
| 150 | return False |
| 151 | return True |
| 152 | |
| 153 | def get_selected_entity(self) -> tuple[str, str]: |
| 154 | """Returns (entity_name, entity_type)""" |
no test coverage detected