package game type Hand struct { PileOfCardsBase } func NewHand() *Hand { h := Hand{PileOfCardsBase{[]*Card{}}} return &h }