Schafkopf-Server/Sources/App/Infos/BiddingInfo.swift
2021-11-30 20:56:04 +01:00

17 lines
469 B
Swift

import Foundation
struct BiddingInfo: Codable {
/// The bidding class (0-5) specifying the minimum game that must be played
let highestBidClass: Int
/// The index of the player who currently has the highest bid
let indexOfHighestBidder: Int
/// The index of the player who's turn it is to bid
let indexOfNextBidder: Int
/// Indicates which players are remaining in the bidding process
let remainingBidders: [Bool]
}