Socket connect on server

This commit is contained in:
Christoph Hagen
2021-11-30 20:56:04 +01:00
parent 294b124807
commit 7716b37fb3
3 changed files with 52 additions and 12 deletions

View File

@ -1,6 +1,6 @@
import Foundation
struct BiddingInfo: Cobable {
struct BiddingInfo: Codable {
/// The bidding class (0-5) specifying the minimum game that must be played
let highestBidClass: Int
@ -12,5 +12,5 @@ struct BiddingInfo: Cobable {
let indexOfNextBidder: Int
/// Indicates which players are remaining in the bidding process
let remaingingBidders: [Bool]
let remainingBidders: [Bool]
}