raspberry_games_server_game_logic 1.8.434 → 1.8.435

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.
@@ -978,12 +978,13 @@ export declare namespace games.jass.logic.data.models.config {
978
978
  }
979
979
  export declare namespace games.jass.logic.data.models.dealer {
980
980
  class RandomData {
981
- constructor(signature: Nullable<string>, id: string, indexes: kotlin.collections.KtList<number>, provider: games.jass.logic.domain.interactors.dealer.DealerStrategy);
981
+ constructor(signature: Nullable<string>, id: string, indexes: kotlin.collections.KtList<number>, provider: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>);
982
982
  get signature(): Nullable<string>;
983
983
  get id(): string;
984
984
  get indexes(): kotlin.collections.KtList<number>;
985
985
  get provider(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
986
- copy(signature?: Nullable<string>, id?: string, indexes?: kotlin.collections.KtList<number>, provider?: games.jass.logic.domain.interactors.dealer.DealerStrategy): games.jass.logic.data.models.dealer.RandomData;
986
+ get cardDeck(): kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>;
987
+ copy(signature?: Nullable<string>, id?: string, indexes?: kotlin.collections.KtList<number>, provider?: games.jass.logic.domain.interactors.dealer.DealerStrategy, cardDeck?: kotlin.collections.KtList<any/* io.raspberryapps.card_game.core.data.models.cards.GameCard */>): games.jass.logic.data.models.dealer.RandomData;
987
988
  toString(): string;
988
989
  hashCode(): number;
989
990
  equals(other: Nullable<any>): boolean;