summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordawidg81 <dawidgorski.m@gmail.com>2026-01-28 14:08:33 +0100
committerdawidg81 <dawidgorski.m@gmail.com>2026-01-28 14:08:33 +0100
commitb9e62bec34bddae08a2364b291016c99da9c9016 (patch)
tree2edeb315f1ab5704c8fddcd4c20ad29cd40dc877
parent0a11fc4c6a75aa9971a7a92acec06eab7c510ebd (diff)
Updated README
-rw-r--r--README27
-rw-r--r--README.md17
2 files changed, 27 insertions, 17 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..b615c41
--- /dev/null
+++ b/README
@@ -0,0 +1,27 @@
+ # minesweeper #
+
+A reimplementation of minesweeper game in C++ in terminal.
+
+ ## Concept ##
+
+There are going to be 3 difficulties and one additional
+option where user can determine plot size and amount of mines
+by himself.
+
+Game commands are going to be read from normal std::cin input
+method. The project is not going to use curses, ncurses or
+lncurses libraries for now.
+
+Plot is going to be displayed (printed) on the upper left
+side of the screen, eventually with colors. Here are planned
+symbols of in-game elements:
+
+ # - unrevealed tile.
+
+ . - revealed tile (no mines around).
+
+ X - (red color) bomb.
+
+Colorful numbers from `1` (1 mine around the revealed tile) to
+(maximum) `8` (8 mines around the revealed tile) - numbers
+saying how much mines are around it.
diff --git a/README.md b/README.md
deleted file mode 100644
index 9c86a71..0000000
--- a/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# minesweeper
-
-A reimplementation of minesweeper game in C++ in terminal.
-
-## Concept
-
-There are going to be 3 difficulties and one additional option where user can determine plot size and amount of mines by himself.
-Game commands are going to be read from normal std::cin input method. The project is not going to use curses, ncurses or lncurses libraries for now.
-Plot is going to be displayed (printed) on the upper left side of the screen, eventually with colors. Here are planned symbols of in-game elements:
-
-`#` - unrevealed tile.
-
-`.` - revealed tile (no mines around).
-
-`X` - (red color) bomb.
-
-Colorful numbers from `1` (1 mine around the revealed tile) to (maximum) `8` (8 mines around the revealed tile) - numbers saying how much mines are around it.