game_client_logic_deb 1.8.70 → 1.8.71
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 +1158 -1126
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +8996 -8970
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_client.d.ts +11 -0
- package/Logic_Debertz-game_client.js +2581 -2613
- package/Logic_Debertz-game_client.js.map +1 -1
- package/kotlin-kotlin-stdlib.js +162 -162
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-io-kotlinx-io-core.js +13 -16
- package/kotlinx-io-kotlinx-io-core.js.map +1 -1
- package/kotlinx.coroutines-kotlinx-coroutines-core-js-ir.js +1 -1
- package/package.json +1 -1
|
@@ -11,10 +11,15 @@ export declare namespace com.logic.data.models {
|
|
|
11
11
|
get deleteFilesOnClear(): boolean;
|
|
12
12
|
get logsDirectoryPath(): Nullable<string>;
|
|
13
13
|
get fileNameFormat(): string;
|
|
14
|
+
get requireDirectoryPath(): string;
|
|
14
15
|
copy(fileLogsEnabled?: boolean, deleteFilesOnClear?: boolean, logsDirectoryPath?: Nullable<string>, fileNameFormat?: string): com.logic.data.models.CoreConfig;
|
|
15
16
|
toString(): string;
|
|
16
17
|
hashCode(): number;
|
|
17
18
|
equals(other: Nullable<any>): boolean;
|
|
19
|
+
static get Companion(): {
|
|
20
|
+
getClientEngineTestMode(fileLogsEnabled: boolean, logsDirectoryPath: string): com.logic.data.models.CoreConfig;
|
|
21
|
+
formatter(segment: string, gameId: string, roomId: string, userId: string): string;
|
|
22
|
+
};
|
|
18
23
|
}
|
|
19
24
|
}
|
|
20
25
|
export declare namespace com.logic.data.models {
|
|
@@ -478,6 +483,9 @@ export declare namespace com.debertz.logic.data.models {
|
|
|
478
483
|
toString(): string;
|
|
479
484
|
hashCode(): number;
|
|
480
485
|
equals(other: Nullable<any>): boolean;
|
|
486
|
+
static get Companion(): {
|
|
487
|
+
getClientEngineTestMode(): com.debertz.logic.data.models.EngineLogicConfig;
|
|
488
|
+
};
|
|
481
489
|
}
|
|
482
490
|
}
|
|
483
491
|
export declare namespace com.debertz.logic.data.models {
|
|
@@ -1101,6 +1109,9 @@ export declare namespace com.debertz.logic.client.data.models.config {
|
|
|
1101
1109
|
toString(): string;
|
|
1102
1110
|
hashCode(): number;
|
|
1103
1111
|
equals(other: Nullable<any>): boolean;
|
|
1112
|
+
static get Companion(): {
|
|
1113
|
+
getClientEngineTestMode(): com.debertz.logic.client.data.models.config.GameClientConfig;
|
|
1114
|
+
};
|
|
1104
1115
|
}
|
|
1105
1116
|
}
|
|
1106
1117
|
export declare namespace com.debertz.logic.client.data.models.vm {
|