Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 19, 2021 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/3b7882b83332deb25bafd4c3b6681bb1 to your computer and use it in GitHub Desktop.
Save parzibyte/3b7882b83332deb25bafd4c3b6681bb1 to your computer and use it in GitHub Desktop.
int es_ganador(char jugador) {
if (jugador == ARQUERO_J1) {
return flechazos_recibidos_jugador_2 >= ROUNDS_PARA_PERDER;
} else {
return flechazos_recibidos_jugador_1 >= ROUNDS_PARA_PERDER;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment