raspberry_games_engine_helpers 1.8.336 → 1.8.338
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.
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.d.ts +3 -2
- package/Logic_Debertz-engine.js +6184 -6175
- package/Logic_Debertz-engine.js.map +1 -1
- package/package.json +1 -1
package/Logic_Debertz-core.js
CHANGED
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
|
|
216
216
|
//endregion
|
|
217
217
|
function GameEngineConfig() {
|
|
218
|
-
this.version = '1.8.
|
|
218
|
+
this.version = '1.8.338';
|
|
219
219
|
}
|
|
220
220
|
protoOf(GameEngineConfig).o25 = function () {
|
|
221
221
|
return this.version;
|
|
@@ -516,14 +516,15 @@ export declare namespace games.jass.logic {
|
|
|
516
516
|
}
|
|
517
517
|
export declare namespace games.jass.logic.data.models {
|
|
518
518
|
class DealerConfig {
|
|
519
|
-
constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean);
|
|
519
|
+
constructor(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean);
|
|
520
520
|
get dealerStrategy(): games.jass.logic.domain.interactors.dealer.DealerStrategy;
|
|
521
521
|
get isBotsAreHappy(): boolean;
|
|
522
522
|
get cards(): Nullable<Array<number>>;
|
|
523
|
+
get shuffleCardsPlayerNumber(): Nullable<number>;
|
|
523
524
|
get shouldDisplayDealerStrategy(): boolean;
|
|
524
525
|
equals(other: Nullable<any>): boolean;
|
|
525
526
|
hashCode(): number;
|
|
526
|
-
copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
|
|
527
|
+
copy(dealerStrategy?: games.jass.logic.domain.interactors.dealer.DealerStrategy, isBotsAreHappy?: boolean, cards?: Nullable<Array<number>>, shuffleCardsPlayerNumber?: Nullable<number>, shouldDisplayDealerStrategy?: boolean): games.jass.logic.data.models.DealerConfig;
|
|
527
528
|
toString(): string;
|
|
528
529
|
static get Companion(): {
|
|
529
530
|
getFromServerConfig(dealerStrategy?: string, cardsJson?: Nullable<string>): games.jass.logic.data.models.DealerConfig;
|