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.
@@ -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"];