module Game where import Player (Player) import qualified Player as P import Card (Card) import qualified Card as C data Game = Game { players :: [Player] , stockPile :: [Card] , discardPile :: [Card] }