raspberry_games_server_game_logic 1.8.266 → 1.8.267
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 +1 -1
- package/Logic_Debertz-core.js +862 -819
- package/Logic_Debertz-core.js.map +1 -1
- package/Logic_Debertz-engine.js +9663 -9726
- package/Logic_Debertz-engine.js.map +1 -1
- package/Logic_Debertz-game_server.d.ts +3 -2
- package/Logic_Debertz-game_server.js +576 -576
- package/kotlin-kotlin-stdlib.js +10 -10
- package/kotlin-kotlin-stdlib.js.map +1 -1
- package/kotlinx-coroutines-core.js +1 -1
- package/package.json +1 -1
|
@@ -317,15 +317,16 @@ 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, initialLuckyFactor?: Nullable<number>, payload?: Nullable<any>);
|
|
320
|
+
constructor(playerId: string, name: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialRating?: Nullable<number>, initialLuckyFactor?: 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 initialRating(): Nullable<number>;
|
|
325
326
|
get initialLuckyFactor(): Nullable<number>;
|
|
326
327
|
get payload(): Nullable<any>;
|
|
327
328
|
toString(): string;
|
|
328
|
-
copy(playerId?: string, name?: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialLuckyFactor?: Nullable<number>, payload?: Nullable<any>): com.logic.data.models.player.GameUserInfo;
|
|
329
|
+
copy(playerId?: string, name?: string, avatarUrl?: Nullable<string>, isBot?: boolean, initialRating?: Nullable<number>, initialLuckyFactor?: Nullable<number>, payload?: Nullable<any>): com.logic.data.models.player.GameUserInfo;
|
|
329
330
|
hashCode(): number;
|
|
330
331
|
equals(other: Nullable<any>): boolean;
|
|
331
332
|
readonly __doNotUseOrImplementIt: com.logic.data.models.player.PlayerIdContract["__doNotUseOrImplementIt"];
|