Enregistrement de trajet en train

This commit is contained in:
2024-12-11 23:42:22 +01:00
parent 54a7806316
commit 33ee18d7e2
4 changed files with 110 additions and 6 deletions

View File

@ -27,7 +27,7 @@ export default function MapScreen() {
visible={game.gameStarted || game.money > 0}
size='small'
color='black'
icon={game.currentRunner ? 'run-fast' : 'police-badge'}
icon={game.currentRunner ? 'run-fast' : () => <FontAwesome6 name='cat' size={20} />}
label={game.currentRunner ? "Coureuse" : "Poursuiveuse"} />
</Surface>
)