diff --git a/README.md b/README.md
index 1c9ba39..32ffcb6 100644
--- a/README.md
+++ b/README.md
@@ -16,6 +16,14 @@ The object of the game is to identify a 'SET' of three cards from 12 cards place
A set contains of three cards in which each of the cards' features, looked at one-by-one, are the same on each card, or, are different on each card.
If two cards are the same and one card is different in any feature, then it is not a SET. A SET must be either all the same or all different in each individual feature.
+## Screenshots
+
+
+
+
+
+
+
## Features
* Singleplayer/Multiplayer mode
diff --git a/assets/screen1.png b/assets/screen1.png
new file mode 100644
index 0000000..76df763
Binary files /dev/null and b/assets/screen1.png differ
diff --git a/assets/screen2.png b/assets/screen2.png
new file mode 100644
index 0000000..81c7d72
Binary files /dev/null and b/assets/screen2.png differ
diff --git a/assets/screen3.png b/assets/screen3.png
new file mode 100644
index 0000000..139bbec
Binary files /dev/null and b/assets/screen3.png differ
diff --git a/assets/screen4.png b/assets/screen4.png
new file mode 100644
index 0000000..b3f90b4
Binary files /dev/null and b/assets/screen4.png differ
diff --git a/assets/screen5.png b/assets/screen5.png
new file mode 100644
index 0000000..801950c
Binary files /dev/null and b/assets/screen5.png differ
diff --git a/src/main/scala/de/htwg/se/set/view/panel/CardsPanel.scala b/src/main/scala/de/htwg/se/set/view/panel/CardsPanel.scala
index 135ed4f..3176b35 100644
--- a/src/main/scala/de/htwg/se/set/view/panel/CardsPanel.scala
+++ b/src/main/scala/de/htwg/se/set/view/panel/CardsPanel.scala
@@ -48,7 +48,6 @@ class CardsPanel(controller: IController, rows: Int, columns: Int) extends GridP
val row = index / columns
(col + 'A').toChar.toString + (row + 1).toString
}).toList
- println(selectedCoordinates)
controller.handleAction(SelectCardsAction(selectedCoordinates))
}
contents += cardButton