Create route to list all the games
This commit is contained in:
10
src/test/kotlin/eventDemo/app/Helpers.kt
Normal file
10
src/test/kotlin/eventDemo/app/Helpers.kt
Normal file
@@ -0,0 +1,10 @@
|
||||
package eventDemo.app
|
||||
|
||||
import eventDemo.business.entity.Card
|
||||
import eventDemo.business.entity.Deck
|
||||
|
||||
fun Deck.allCardCount(): Int =
|
||||
stack.size + discard.size + playersHands.values.flatten().size
|
||||
|
||||
fun Deck.allCards(): Set<Card> =
|
||||
stack + discard + playersHands.values.flatten()
|
||||
Reference in New Issue
Block a user