package common import ( "muhq.space/muhqs-game/go/game" ) // JoinInfo contains the information about joined draft provided by the server. type JoinInfo struct { // Players contains the player names in the deaft. Players []string // Desc contains the description of the draft. Desc string // Sets specify the drafted card sets. Sets []game.SetIdentifier // PlayerId can be used to reconnect to the draft. PlayerId int // Deadline specifies the enforced deadline. Deadline string }