(text, font, color, x, y)
| 65 | |
| 66 | # Fonction pour afficher le texte |
| 67 | def display_text(text, font, color, x, y): |
| 68 | text_surface = font.render(text, True, color) |
| 69 | screen.blit(text_surface, (x, y)) |
| 70 | |
| 71 | |
| 72 | # Fonction pour dessiner les cartes |
no outgoing calls
no test coverage detected