Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.14 KB

README.md

File metadata and controls

31 lines (24 loc) · 1.14 KB

Minesweeper Clone for Terminal Nerds

thumbnail

Quick Start

Mines is written in go so make sure you have it installed before building the game.

Building

$ go build virgee.com/mines

Running Mines

$ ./mines 10 10      # 10 rows by 10 columns field, 20% mine population
$ ./mines 10 25      # 10 rows by 25 columns field, 20% mine population
$ ./mines 10 10 25   # 10 rows by 10 columns field, 25% mine population

Controls

key description
w,a,s,d or up,left,down,right Move cursor around
SPACE Tap a cell
f Flag/unflag cell
q Quit

BE AWARE OF THE MINES

Tapping a cell that contains a mine will make it explode and you'll die. Please, tap responsibly.