game_client_logic_deb 1.8.250 → 1.8.253
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/Kotlin-DateTime-library-kotlinx-datetime.js +2 -2
- package/Logic_Debertz-core.js +1 -1
- package/Logic_Debertz-engine.js +5911 -6055
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +4 -2
- package/Logic_Debertz-game_client.js +2062 -2062
- package/Logic_Debertz-game_client.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +10 -10
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +8 -8
- package/kotlinx-coroutines-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -1737,12 +1737,13 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1737
1737
|
};
|
|
1738
1738
|
}
|
|
1739
1739
|
class FinishGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, games.jass.logic.redux.actions.mechanic.TerminatedAction {
|
|
1740
|
-
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, aid?: Nullable<string>);
|
|
1740
|
+
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, aid?: Nullable<string>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameToRoomTransition>);
|
|
1741
1741
|
get reason(): com.logic.data.models.TerminationGameReason;
|
|
1742
1742
|
get isGameFinished(): boolean;
|
|
1743
1743
|
get aid(): Nullable<string>;
|
|
1744
|
-
|
|
1744
|
+
get transition(): Nullable<games.jass.logic.redux.actions.mechanic.GameToRoomTransition>;
|
|
1745
1745
|
toString(): string;
|
|
1746
|
+
copy(reason?: com.logic.data.models.TerminationGameReason, isGameFinished?: boolean, aid?: Nullable<string>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameToRoomTransition>): games.jass.logic.redux.actions.mechanic.FinishGameMechanicAction;
|
|
1746
1747
|
hashCode(): number;
|
|
1747
1748
|
equals(other: Nullable<any>): boolean;
|
|
1748
1749
|
get actionTag(): string;
|
|
@@ -1776,6 +1777,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1776
1777
|
interface TerminatedAction extends com.logic.redux.store.definitions.Action {
|
|
1777
1778
|
readonly reason: com.logic.data.models.TerminationGameReason;
|
|
1778
1779
|
readonly isGameFinished: boolean;
|
|
1780
|
+
readonly transition: Nullable<games.jass.logic.redux.actions.mechanic.GameToRoomTransition>;
|
|
1779
1781
|
readonly __doNotUseOrImplementIt: {
|
|
1780
1782
|
readonly "games.jass.logic.redux.actions.mechanic.TerminatedAction": unique symbol;
|
|
1781
1783
|
} & com.logic.redux.store.definitions.Action["__doNotUseOrImplementIt"];
|