Player actions, playable cards

This commit is contained in:
Christoph Hagen
2021-12-06 11:43:30 +01:00
parent 50a35ece03
commit 20d1ce24da
13 changed files with 675 additions and 447 deletions

View File

@ -0,0 +1,8 @@
import Foundation
struct CardInfo: Codable, Equatable {
let card: CardId
let playable: Bool
}