Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 355 Bytes

05_minesweeper.md

File metadata and controls

25 lines (19 loc) · 355 Bytes

Mines highlighting

JustBlackBird

    map.setSquareColor(x, y, '#000');

Jhack (giacgbj)

    map.setSquareColor(x, y, '')

Agamemnus

Reposition:

    for (var x = 0; x < 2; x++) {
        for (var y = 0; y < 20; y++) {
            map.placeObject (x, y, 'mine')
        }
    }
    break