raspberry_games_server_game_logic 1.8.287 → 1.8.289
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 +20 -23
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +10076 -10071
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +3 -3
- package/Logic_Debertz-game_server.js +684 -684
- package/kotlin-kotlin-stdlib.js +10 -10
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +2 -2
- package/package.json +1 -1
|
@@ -317,17 +317,17 @@ export declare namespace com.logic.data.models {
|
|
|
317
317
|
}
|
|
318
318
|
export declare namespace com.logic.data.models.player {
|
|
319
319
|
class GameUserInfo implements com.logic.data.models.player.PlayerIdContract {
|
|
320
|
-
constructor(playerId: string, name: string, avatarUrl?: Nullable<string>, isBot?: boolean,
|
|
320
|
+
constructor(playerId: string, name: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialLuckyFactor?: Nullable<number>, rating?: Nullable<number>, payload?: Nullable<any>);
|
|
321
321
|
get playerId(): string;
|
|
322
322
|
get name(): string;
|
|
323
323
|
get avatarUrl(): Nullable<string>;
|
|
324
324
|
get isBot(): boolean;
|
|
325
|
-
get rating(): Nullable<number>;
|
|
326
325
|
get initialLuckyFactor(): Nullable<number>;
|
|
326
|
+
get rating(): Nullable<number>;
|
|
327
327
|
get payload(): Nullable<any>;
|
|
328
328
|
getRatingOrDefault(initialUserRating: number): number;
|
|
329
329
|
toString(): string;
|
|
330
|
-
copy(playerId?: string, name?: string, avatarUrl?: Nullable<string>, isBot?: boolean,
|
|
330
|
+
copy(playerId?: string, name?: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialLuckyFactor?: Nullable<number>, rating?: Nullable<number>, payload?: Nullable<any>): com.logic.data.models.player.GameUserInfo;
|
|
331
331
|
hashCode(): number;
|
|
332
332
|
equals(other: Nullable<any>): boolean;
|
|
333
333
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|