client_plugin_logic_deb 1.8.323 → 1.8.326
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-client_plugin.d.ts +15 -7
- package/Logic_Debertz-client_plugin.js +11 -11
- package/Logic_Debertz-core.js +40 -30
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +453 -128
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.js +49 -51
- package/Logic_Debertz-game_client.js.map +1 -1
- package/Logic_Debertz-game_server.js +31 -20
- package/Logic_Debertz-game_server.js.map +1 -1
- package/kotlinx-coroutines-core.js +1 -1
- package/package.json +1 -1
|
@@ -324,7 +324,7 @@
|
|
|
324
324
|
function addFormatStructureForTime(structure) {
|
|
325
325
|
this.v5d(structure);
|
|
326
326
|
}
|
|
327
|
-
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder,
|
|
327
|
+
initMetadataForInterface(AbstractWithDateTimeBuilder, 'AbstractWithDateTimeBuilder', VOID, VOID, [AbstractWithDateBuilder, AbstractWithTimeBuilder, WithTime, WithDate]);
|
|
328
328
|
function offsetHours$default(padding, $super) {
|
|
329
329
|
padding = padding === VOID ? Padding_ZERO_getInstance() : padding;
|
|
330
330
|
var tmp;
|
|
@@ -377,7 +377,7 @@
|
|
|
377
377
|
return tmp;
|
|
378
378
|
}
|
|
379
379
|
initMetadataForInterface(AbstractWithOffsetBuilder, 'AbstractWithOffsetBuilder', VOID, VOID, [WithUtcOffset]);
|
|
380
|
-
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder,
|
|
380
|
+
initMetadataForClass(Builder, 'Builder', VOID, VOID, [AbstractDateTimeFormatBuilder, AbstractWithDateTimeBuilder, AbstractWithOffsetBuilder, WithTime, WithUtcOffset, WithDate]);
|
|
381
381
|
initMetadataForClass(AbstractDateTimeFormat, 'AbstractDateTimeFormat');
|
|
382
382
|
initMetadataForClass(DateTimeComponentsFormat, 'DateTimeComponentsFormat', VOID, AbstractDateTimeFormat);
|
|
383
383
|
initMetadataForClass(TwoDigitNumber, 'TwoDigitNumber');
|
|
@@ -252,12 +252,16 @@ export declare namespace com.logic.data.models {
|
|
|
252
252
|
get name(): "NO_ACTIVE_PLAYERS";
|
|
253
253
|
get ordinal(): 3;
|
|
254
254
|
};
|
|
255
|
+
static get REVENGED(): com.logic.data.models.GameFinishedReason.Reason & {
|
|
256
|
+
get name(): "REVENGED";
|
|
257
|
+
get ordinal(): 4;
|
|
258
|
+
};
|
|
255
259
|
static get GAME_NOT_EXISTS(): com.logic.data.models.GameFinishedReason.Reason & {
|
|
256
260
|
get name(): "GAME_NOT_EXISTS";
|
|
257
|
-
get ordinal():
|
|
261
|
+
get ordinal(): 5;
|
|
258
262
|
};
|
|
259
|
-
get name(): "DEPLOY" | "PLAYER_DELETED" | "FINISHED" | "NO_ACTIVE_PLAYERS" | "GAME_NOT_EXISTS";
|
|
260
|
-
get ordinal(): 0 | 1 | 2 | 3 | 4;
|
|
263
|
+
get name(): "DEPLOY" | "PLAYER_DELETED" | "FINISHED" | "NO_ACTIVE_PLAYERS" | "REVENGED" | "GAME_NOT_EXISTS";
|
|
264
|
+
get ordinal(): 0 | 1 | 2 | 3 | 4 | 5;
|
|
261
265
|
static values(): Array<com.logic.data.models.GameFinishedReason.Reason>;
|
|
262
266
|
static valueOf(value: string): com.logic.data.models.GameFinishedReason.Reason;
|
|
263
267
|
static get Companion(): {
|
|
@@ -1860,7 +1864,7 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1860
1864
|
}
|
|
1861
1865
|
/* @ts-ignore: https://github.com/microsoft/TypeScript/issues/4628 */
|
|
1862
1866
|
class FinishingGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements games.jass.logic.redux.actions.mechanic.TerminatedAction, com.logic.redux.actions.validation.NotValidateIfGameFinishing {
|
|
1863
|
-
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, transition
|
|
1867
|
+
constructor(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, transition: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>, sessionAnalytics?: Nullable<games.jass.logic.data.models.GameSessionAnalytics>, gameHistory?: Nullable<games.jass.logic.data.models.table.history.GameHistory>, isRoundHistorySaved?: boolean, aid?: Nullable<string>);
|
|
1864
1868
|
get reason(): com.logic.data.models.TerminationGameReason;
|
|
1865
1869
|
get isGameFinished(): boolean;
|
|
1866
1870
|
get transition(): Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>;
|
|
@@ -1876,7 +1880,8 @@ export declare namespace games.jass.logic.redux.actions.mechanic {
|
|
|
1876
1880
|
notValidateWhenFinishing(): boolean;
|
|
1877
1881
|
readonly __doNotUseOrImplementIt: games.jass.logic.redux.actions.mechanic.MechanicAction["__doNotUseOrImplementIt"] & games.jass.logic.redux.actions.mechanic.TerminatedAction["__doNotUseOrImplementIt"] & com.logic.redux.actions.validation.NotValidateIfGameFinishing["__doNotUseOrImplementIt"];
|
|
1878
1882
|
static get Companion(): {
|
|
1879
|
-
|
|
1883
|
+
fromTableWithAnalytics(reason: com.logic.data.models.TerminationGameReason, isGameFinished: boolean, table: Nullable<games.jass.logic.data.models.table.JassTable>, transition?: Nullable<games.jass.logic.redux.actions.mechanic.GameTransition>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
1884
|
+
fromTable(table: Nullable<games.jass.logic.data.models.table.JassTable>): games.jass.logic.redux.actions.mechanic.FinishingGameMechanicAction;
|
|
1880
1885
|
};
|
|
1881
1886
|
}
|
|
1882
1887
|
class FinishGameMechanicAction extends games.jass.logic.redux.actions.mechanic.MechanicAction implements com.logic.redux.actions.validation.NotValidateIfGameFinishing, games.jass.logic.redux.actions.mechanic.TerminatedAction {
|
|
@@ -1958,12 +1963,14 @@ export declare interface GameHelper {
|
|
|
1958
1963
|
mapPoints(points: number): games.jass.logic.data.models.table.config.PointsMode;
|
|
1959
1964
|
mapPlayers(players: number): games.jass.logic.data.models.table.config.PlayersMode;
|
|
1960
1965
|
mapRules(rules: any): games.jass.logic.data.models.rules.Rules;
|
|
1961
|
-
|
|
1962
|
-
|
|
1966
|
+
prepareLobbyConfigWithPagination(config: any): any;
|
|
1967
|
+
prepareLobbyConfig(config: any): any;
|
|
1968
|
+
prepareLeagueConfig(config: any): any;
|
|
1963
1969
|
isValidConfigObject(config: any): boolean;
|
|
1964
1970
|
getRulesByType(rulesSetType: games.jass.logic.data.models.rules.RulesSetType): games.jass.logic.data.models.rules.Rules;
|
|
1965
1971
|
getRulesByString(name: string): games.jass.logic.data.models.rules.Rules;
|
|
1966
1972
|
mapRulesSetType(name: string): games.jass.logic.data.models.rules.RulesSetType;
|
|
1973
|
+
mapToLeague(name: string): games.jass.logic.data.models.leagues.League;
|
|
1967
1974
|
readonly __doNotUseOrImplementIt: {
|
|
1968
1975
|
readonly GameHelper: unique symbol;
|
|
1969
1976
|
};
|
|
@@ -2001,6 +2008,7 @@ export declare interface RatingHelper {
|
|
|
2001
2008
|
isValidRatingForLeague(league: games.jass.logic.data.models.leagues.League, rating: number): boolean;
|
|
2002
2009
|
mapRatingToLeague(rating: number): games.jass.logic.data.models.leagues.League;
|
|
2003
2010
|
getLeaguesConfig(): games.jass.logic.data.models.leagues.LeaguesConfig;
|
|
2011
|
+
mapToLeague(name: string): games.jass.logic.data.models.leagues.League;
|
|
2004
2012
|
readonly __doNotUseOrImplementIt: {
|
|
2005
2013
|
readonly RatingHelper: unique symbol;
|
|
2006
2014
|
};
|
|
@@ -110,10 +110,10 @@
|
|
|
110
110
|
var mapFromDto_6 = kotlin_io_raspberryapps_game_engine_core.$_$.c1;
|
|
111
111
|
var PluginGeneratedSerialDescriptor = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.c2;
|
|
112
112
|
var $serializer_getInstance = kotlin_io_raspberryapps_game_engine_game_client.$_$.j3;
|
|
113
|
-
var $serializer_getInstance_0 = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
114
|
-
var $serializer_getInstance_1 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
115
|
-
var $serializer_getInstance_2 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
116
|
-
var $serializer_getInstance_3 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
113
|
+
var $serializer_getInstance_0 = kotlin_io_raspberryapps_game_engine_core.$_$.t5;
|
|
114
|
+
var $serializer_getInstance_1 = kotlin_io_raspberryapps_game_engine_engine.$_$.ca;
|
|
115
|
+
var $serializer_getInstance_2 = kotlin_io_raspberryapps_game_engine_engine.$_$.ea;
|
|
116
|
+
var $serializer_getInstance_3 = kotlin_io_raspberryapps_game_engine_engine.$_$.da;
|
|
117
117
|
var $serializer_getInstance_4 = kotlin_io_raspberryapps_game_engine_game_client.$_$.k3;
|
|
118
118
|
var UnknownFieldException_init_$Create$ = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.f;
|
|
119
119
|
var StringSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.u;
|
|
@@ -134,9 +134,9 @@
|
|
|
134
134
|
var contentEquals = kotlin_kotlin.$_$.w6;
|
|
135
135
|
var contentHashCode = kotlin_kotlin.$_$.x6;
|
|
136
136
|
var IntSerializer_getInstance = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.s;
|
|
137
|
-
var $serializer_getInstance_5 = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
137
|
+
var $serializer_getInstance_5 = kotlin_io_raspberryapps_game_engine_core.$_$.q5;
|
|
138
138
|
var ArrayListSerializer = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_core.$_$.v1;
|
|
139
|
-
var $serializer_getInstance_6 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
139
|
+
var $serializer_getInstance_6 = kotlin_io_raspberryapps_game_engine_engine.$_$.v9;
|
|
140
140
|
var Module_init_$Create$ = kotlin_org_kodein_di_kodein_di.$_$.a;
|
|
141
141
|
var UserRatingInteractor = kotlin_io_raspberryapps_game_engine_engine.$_$.j4;
|
|
142
142
|
var Json = kotlin_org_jetbrains_kotlinx_kotlinx_serialization_json.$_$.d;
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
var ClientStatisticsInteractor = kotlin_io_raspberryapps_game_engine_game_client.$_$.r2;
|
|
178
178
|
var ClientAppSavedState = kotlin_io_raspberryapps_game_engine_game_client.$_$.m2;
|
|
179
179
|
var PersistentTableState = kotlin_io_raspberryapps_game_engine_game_client.$_$.n2;
|
|
180
|
-
var GameEngineConfig_instance = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
180
|
+
var GameEngineConfig_instance = kotlin_io_raspberryapps_game_engine_core.$_$.b6;
|
|
181
181
|
var get_versionOrDefault = kotlin_io_raspberryapps_game_engine_core.$_$.l4;
|
|
182
182
|
var PersistentAppStateInteractor = kotlin_io_raspberryapps_game_engine_game_client.$_$.s2;
|
|
183
183
|
var LoggerOutputDataDto = kotlin_io_raspberryapps_game_engine_core.$_$.o3;
|
|
@@ -187,7 +187,7 @@
|
|
|
187
187
|
var FileLoggerOutput = kotlin_io_raspberryapps_game_engine_engine.$_$.m8;
|
|
188
188
|
var FileLoggerOutputImpl = kotlin_io_raspberryapps_game_engine_engine.$_$.l8;
|
|
189
189
|
var dealerModule = kotlin_io_raspberryapps_game_engine_core.$_$.i4;
|
|
190
|
-
var Companion_instance_0 = kotlin_io_raspberryapps_game_engine_engine.$_$.
|
|
190
|
+
var Companion_instance_0 = kotlin_io_raspberryapps_game_engine_engine.$_$.oa;
|
|
191
191
|
var GameClient = kotlin_io_raspberryapps_game_engine_game_client.$_$.i3;
|
|
192
192
|
var Flow = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.s;
|
|
193
193
|
var KtList = kotlin_kotlin.$_$.y5;
|
|
@@ -196,9 +196,9 @@
|
|
|
196
196
|
var valueOf = kotlin_io_raspberryapps_game_engine_core.$_$.n3;
|
|
197
197
|
var copyToArray = kotlin_kotlin.$_$.j7;
|
|
198
198
|
var emptyFlow = kotlin_org_jetbrains_kotlinx_kotlinx_coroutines_core.$_$.z;
|
|
199
|
-
var AppEnvironment_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
200
|
-
var AppEnvironmentValue_DEVELOPMENT_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
201
|
-
var AppEnvironmentValue_PRODUCTION_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.
|
|
199
|
+
var AppEnvironment_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.d6;
|
|
200
|
+
var AppEnvironmentValue_DEVELOPMENT_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.j5;
|
|
201
|
+
var AppEnvironmentValue_PRODUCTION_getInstance = kotlin_io_raspberryapps_game_engine_core.$_$.k5;
|
|
202
202
|
var PlayersRatingInputDto = kotlin_io_raspberryapps_game_engine_engine.$_$.z2;
|
|
203
203
|
var mapFromDto_7 = kotlin_io_raspberryapps_game_engine_engine.$_$.o1;
|
|
204
204
|
var mapToDto = kotlin_io_raspberryapps_game_engine_engine.$_$.q1;
|
package/Logic_Debertz-core.js
CHANGED
|
@@ -412,7 +412,7 @@
|
|
|
412
412
|
initMetadataForClass(AppEnvironmentValue, 'AppEnvironmentValue', VOID, Enum);
|
|
413
413
|
//endregion
|
|
414
414
|
function GameEngineConfig() {
|
|
415
|
-
this.version = '1.8.
|
|
415
|
+
this.version = '1.8.326';
|
|
416
416
|
}
|
|
417
417
|
protoOf(GameEngineConfig).l33 = function () {
|
|
418
418
|
return this.version;
|
|
@@ -973,9 +973,10 @@
|
|
|
973
973
|
var Reason_PLAYER_DELETED_instance;
|
|
974
974
|
var Reason_FINISHED_instance;
|
|
975
975
|
var Reason_NO_ACTIVE_PLAYERS_instance;
|
|
976
|
+
var Reason_REVENGED_instance;
|
|
976
977
|
var Reason_GAME_NOT_EXISTS_instance;
|
|
977
978
|
function values() {
|
|
978
|
-
return [Reason_DEPLOY_getInstance(), Reason_PLAYER_DELETED_getInstance(), Reason_FINISHED_getInstance(), Reason_NO_ACTIVE_PLAYERS_getInstance(), Reason_GAME_NOT_EXISTS_getInstance()];
|
|
979
|
+
return [Reason_DEPLOY_getInstance(), Reason_PLAYER_DELETED_getInstance(), Reason_FINISHED_getInstance(), Reason_NO_ACTIVE_PLAYERS_getInstance(), Reason_REVENGED_getInstance(), Reason_GAME_NOT_EXISTS_getInstance()];
|
|
979
980
|
}
|
|
980
981
|
function valueOf(value) {
|
|
981
982
|
switch (value) {
|
|
@@ -987,6 +988,8 @@
|
|
|
987
988
|
return Reason_FINISHED_getInstance();
|
|
988
989
|
case 'NO_ACTIVE_PLAYERS':
|
|
989
990
|
return Reason_NO_ACTIVE_PLAYERS_getInstance();
|
|
991
|
+
case 'REVENGED':
|
|
992
|
+
return Reason_REVENGED_getInstance();
|
|
990
993
|
case 'GAME_NOT_EXISTS':
|
|
991
994
|
return Reason_GAME_NOT_EXISTS_getInstance();
|
|
992
995
|
default:
|
|
@@ -1028,7 +1031,8 @@
|
|
|
1028
1031
|
Reason_PLAYER_DELETED_instance = new Reason('PLAYER_DELETED', 1);
|
|
1029
1032
|
Reason_FINISHED_instance = new Reason('FINISHED', 2);
|
|
1030
1033
|
Reason_NO_ACTIVE_PLAYERS_instance = new Reason('NO_ACTIVE_PLAYERS', 3);
|
|
1031
|
-
|
|
1034
|
+
Reason_REVENGED_instance = new Reason('REVENGED', 4);
|
|
1035
|
+
Reason_GAME_NOT_EXISTS_instance = new Reason('GAME_NOT_EXISTS', 5);
|
|
1032
1036
|
Companion_getInstance_6();
|
|
1033
1037
|
}
|
|
1034
1038
|
var $ENTRIES;
|
|
@@ -1051,6 +1055,10 @@
|
|
|
1051
1055
|
Reason_initEntries();
|
|
1052
1056
|
return Reason_NO_ACTIVE_PLAYERS_instance;
|
|
1053
1057
|
}
|
|
1058
|
+
function Reason_REVENGED_getInstance() {
|
|
1059
|
+
Reason_initEntries();
|
|
1060
|
+
return Reason_REVENGED_instance;
|
|
1061
|
+
}
|
|
1054
1062
|
function Reason_GAME_NOT_EXISTS_getInstance() {
|
|
1055
1063
|
Reason_initEntries();
|
|
1056
1064
|
return Reason_GAME_NOT_EXISTS_instance;
|
|
@@ -7787,6 +7795,7 @@
|
|
|
7787
7795
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'PLAYER_DELETED', Reason_PLAYER_DELETED_getInstance);
|
|
7788
7796
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'FINISHED', Reason_FINISHED_getInstance);
|
|
7789
7797
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'NO_ACTIVE_PLAYERS', Reason_NO_ACTIVE_PLAYERS_getInstance);
|
|
7798
|
+
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'REVENGED', Reason_REVENGED_getInstance);
|
|
7790
7799
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'GAME_NOT_EXISTS', Reason_GAME_NOT_EXISTS_getInstance);
|
|
7791
7800
|
defineProp($com$logic$data$models.GameFinishedReason.Reason, 'Companion', Companion_getInstance_6);
|
|
7792
7801
|
$com$logic$data$models.GameErrorReason = GameErrorReason;
|
|
@@ -8011,33 +8020,34 @@
|
|
|
8011
8020
|
_.$_$.z4 = Reason_WRONG_PLAYER_TURN_getInstance;
|
|
8012
8021
|
_.$_$.a5 = Reason_DEPLOY_getInstance;
|
|
8013
8022
|
_.$_$.b5 = Reason_FINISHED_getInstance;
|
|
8014
|
-
_.$_$.c5 =
|
|
8015
|
-
_.$_$.d5 =
|
|
8016
|
-
_.$_$.e5 =
|
|
8017
|
-
_.$_$.f5 =
|
|
8018
|
-
_.$_$.g5 =
|
|
8019
|
-
_.$_$.h5 =
|
|
8020
|
-
_.$_$.i5 =
|
|
8021
|
-
_.$_$.j5 =
|
|
8022
|
-
_.$_$.k5 =
|
|
8023
|
-
_.$_$.l5 =
|
|
8024
|
-
_.$_$.m5 =
|
|
8025
|
-
_.$_$.n5 =
|
|
8026
|
-
_.$_$.o5 =
|
|
8027
|
-
_.$_$.p5 = $
|
|
8028
|
-
_.$_$.q5 = $
|
|
8029
|
-
_.$_$.r5 = $
|
|
8030
|
-
_.$_$.s5 = $
|
|
8031
|
-
_.$_$.t5 =
|
|
8032
|
-
_.$_$.u5 =
|
|
8033
|
-
_.$_$.v5 =
|
|
8034
|
-
_.$_$.w5 =
|
|
8035
|
-
_.$_$.x5 =
|
|
8036
|
-
_.$_$.y5 =
|
|
8037
|
-
_.$_$.z5 =
|
|
8038
|
-
_.$_$.a6 =
|
|
8039
|
-
_.$_$.b6 =
|
|
8040
|
-
_.$_$.c6 =
|
|
8023
|
+
_.$_$.c5 = Reason_REVENGED_getInstance;
|
|
8024
|
+
_.$_$.d5 = TimerType_DELAY_getInstance;
|
|
8025
|
+
_.$_$.e5 = LogType_DEBUG_getInstance;
|
|
8026
|
+
_.$_$.f5 = LogType_ERROR_getInstance;
|
|
8027
|
+
_.$_$.g5 = LogType_INFO_getInstance;
|
|
8028
|
+
_.$_$.h5 = LogType_VERBOSE_getInstance;
|
|
8029
|
+
_.$_$.i5 = LogType_WARN_getInstance;
|
|
8030
|
+
_.$_$.j5 = AppEnvironmentValue_DEVELOPMENT_getInstance;
|
|
8031
|
+
_.$_$.k5 = AppEnvironmentValue_PRODUCTION_getInstance;
|
|
8032
|
+
_.$_$.l5 = Companion_instance_8;
|
|
8033
|
+
_.$_$.m5 = Companion_getInstance_9;
|
|
8034
|
+
_.$_$.n5 = Companion_instance_11;
|
|
8035
|
+
_.$_$.o5 = Companion_getInstance_10;
|
|
8036
|
+
_.$_$.p5 = $serializer_getInstance_7;
|
|
8037
|
+
_.$_$.q5 = $serializer_getInstance_8;
|
|
8038
|
+
_.$_$.r5 = $serializer_getInstance_10;
|
|
8039
|
+
_.$_$.s5 = $serializer_getInstance_11;
|
|
8040
|
+
_.$_$.t5 = $serializer_getInstance_1;
|
|
8041
|
+
_.$_$.u5 = ProcessingReasonDto_getInstance;
|
|
8042
|
+
_.$_$.v5 = Companion_getInstance_13;
|
|
8043
|
+
_.$_$.w5 = Companion_getInstance_1;
|
|
8044
|
+
_.$_$.x5 = Companion_instance_5;
|
|
8045
|
+
_.$_$.y5 = ProcessingReason_getInstance;
|
|
8046
|
+
_.$_$.z5 = RestartGameReason_getInstance;
|
|
8047
|
+
_.$_$.a6 = WaitingForConnectionReason_getInstance;
|
|
8048
|
+
_.$_$.b6 = GameEngineConfig_instance;
|
|
8049
|
+
_.$_$.c6 = Toggles_instance;
|
|
8050
|
+
_.$_$.d6 = AppEnvironment_getInstance;
|
|
8041
8051
|
//endregion
|
|
8042
8052
|
return _;
|
|
8043
8053
|
}));
|