A timed, single-player puzzle game, where the objective is to clear all spaces from a field that do not contain a mine.
2
votes
3answers
727 views
Stuck in an infinite recursion in Minesweeper
I am trying to build a simple minesweeper game. The game gets stuck in an infinite recursion whenever a user clicks on a tile which is not a mine...
I have used the following function code for the ...
4
votes
2answers
212 views
Minesweeper: Mouse listener problem
I have wrote a code for game Minesweeper and there is no problem with the graphics,but there is some problems with MouseListener. Here is my code
/*
* To change this template, choose Tools | ...
4
votes
1answer
580 views
Issue with implemented Minesweeper algorithm
So I'm attempting to learn Python by way of Minesweeper. I've got experience with SDL, so I figured playing around with PyGame sounded like a fun way to learn the syntax of the language.
Anywho, I'm ...
