Skip to content

Commit

Permalink
Add screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
patzly committed Jan 19, 2024
1 parent 7a02144 commit 054ef07
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 1 deletion.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

<a href="https://raw.githubusercontent.com/patzly/set-game-scala/main/assets/screen1.png"><img src="assets/screen1.png" width="150px"/></a>
<a href="https://raw.githubusercontent.com/patzly/set-game-scala/main/assets/screen2.png"><img src="assets/screen2.png" width="150px"/></a>
<a href="https://raw.githubusercontent.com/patzly/set-game-scala/main/assets/screen3.png"><img src="assets/screen3.png" width="150px"/></a>
<a href="https://raw.githubusercontent.com/patzly/set-game-scala/main/assets/screen4.png"><img src="assets/screen4.png" width="150px"/></a>
<a href="https://raw.githubusercontent.com/patzly/set-game-scala/main/assets/screen5.png"><img src="assets/screen5.png" width="150px"/></a>

## Features

* Singleplayer/Multiplayer mode
Expand Down
Binary file added assets/screen1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screen2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screen3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screen4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/screen5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion src/main/scala/de/htwg/se/set/view/panel/CardsPanel.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 054ef07

Please sign in to comment.