raspberry_games_server_game_logic 1.8.291 → 1.8.292

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -509,13 +509,14 @@ export declare namespace games.jass.logic {
509
509
  }
510
510
  export declare namespace games.jass.logic.data.models {
511
511
  class DealerConfig {
512
- constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>);
512
+ constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean);
513
513
  get dealerStrategy(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
514
514
  get isBotsAreHappy(): boolean;
515
515
  get cards(): Nullable<Array<number>>;
516
+ get shouldDisplayDealerStrategy(): boolean;
516
517
  equals(other: Nullable<any>): boolean;
517
518
  hashCode(): number;
518
- copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>): games.jass.logic.data.models.DealerConfig;
519
+ copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
519
520
  toString(): string;
520
521
  static get Companion(): {
521
522
  getFromServerConfig(dealerStrategy?: string, cardsJson?: Nullable<string>): games.jass.logic.data.models.DealerConfig;