Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 26, 2022 17:04
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/80599fbcf10e1f9a784910ed103a584a to your computer and use it in GitHub Desktop.
Save parzibyte/80599fbcf10e1f9a784910ed103a584a to your computer and use it in GitHub Desktop.
int main()
{
srand(getpid());
int filas = 3;
int columnas = 3;
int minas = 2;
bool modoProgramador = false; // Poner en true para depurar
Juego juego(Tablero(filas, columnas, modoProgramador), minas);
juego.iniciar();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment