From 57eb699531ce7be921e33786e0cd2693a80765a2 Mon Sep 17 00:00:00 2001 From: panki27 Date: Thu, 19 Apr 2018 10:51:21 +0200 Subject: [PATCH] omitted file extension, fleshed out basic README --- README.md | 28 ++++++++++++++++++++++++++++ minebash.py => minebash | 0 2 files changed, 28 insertions(+) rename minebash.py => minebash (100%) diff --git a/README.md b/README.md index dc5f354..67f470b 100644 --- a/README.md +++ b/README.md @@ -1 +1,29 @@ # minebash + +minebash is a minesweeper implementation in Python for the Linux command line. + +##Features + +1. Color +2. User specified field size & minecounts +3. Difficulty presets + +##Dependencies + +1. None, aside from curses which is standard in Python on Linux + +##Setup +``` +git clone https://github.com/panki27/minebash.git +cd minebash +chmod +x minebash +./minebash +``` + +##Controls +- Arrow Keys: Move Cursor +- Spacebar: Check field +- F: Place flag + +##Command line options +See 'minebash ?' \ No newline at end of file diff --git a/minebash.py b/minebash similarity index 100% rename from minebash.py rename to minebash