game_client_logic_deb 1.3.68 → 1.3.69
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.js +1654 -1638
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +4 -2
- package/Logic_Debertz-game_client.js +2066 -2066
- package/package.json +1 -1
|
@@ -470,16 +470,18 @@ export namespace com.debertz.logic.redux.actions.game {
|
|
|
470
470
|
readonly __doNotUseIt: __doNotImplementIt;
|
|
471
471
|
}
|
|
472
472
|
class PartyStartedAction extends com.debertz.logic.redux.actions.game.GameAction {
|
|
473
|
-
constructor(roomId: string, players: Array<string>, isFirstParty: boolean);
|
|
473
|
+
constructor(roomId: string, players: Array<string>, isFirstParty: boolean, gameNumber: number);
|
|
474
474
|
get roomId(): string;
|
|
475
475
|
get players(): Array<string>;
|
|
476
476
|
get isFirstParty(): boolean;
|
|
477
|
+
get gameNumber(): number;
|
|
477
478
|
equals(other: Nullable<any>): boolean;
|
|
478
479
|
hashCode(): number;
|
|
479
480
|
component1(): string;
|
|
480
481
|
component2(): Array<string>;
|
|
481
482
|
component3(): boolean;
|
|
482
|
-
|
|
483
|
+
component4(): number;
|
|
484
|
+
copy(roomId?: string, players?: Array<string>, isFirstParty?: boolean, gameNumber?: number): com.debertz.logic.redux.actions.game.PartyStartedAction;
|
|
483
485
|
toString(): string;
|
|
484
486
|
get actionTag(): string;
|
|
485
487
|
}
|