raspberry_games_engine_helpers 1.8.424 → 1.8.425

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.
@@ -229,7 +229,7 @@
229
229
  initMetadataForClass(LoggerOutputDataDto, 'LoggerOutputDataDto', VOID, VOID, VOID, VOID, VOID, {0: $serializer_getInstance_10});
230
230
  //endregion
231
231
  function GameEngineConfig() {
232
- this.version = '1.8.424';
232
+ this.version = '1.8.425';
233
233
  }
234
234
  protoOf(GameEngineConfig).k17 = function () {
235
235
  return this.version;
@@ -1408,7 +1408,10 @@ export declare namespace games.jass.logic.data.models.player.points {
1408
1408
  }
1409
1409
  export declare namespace games.jass.logic.data.models.player.state {
1410
1410
  class PlayerLeftResult {
1411
- constructor(playerAchievements: Nullable<games.jass.logic.data.models.player.achievements.PlayerAchievements>, playerGameAnalytics: Nullable<games.jass.logic.data.models.player.analytics.PlayerAnalytics>);
1411
+ constructor(gameId: string, gameCreatedAt: any/* kotlin.time.Instant */, config: games.jass.logic.data.models.table.config.Config, playerAchievements: Nullable<games.jass.logic.data.models.player.achievements.PlayerAchievements>, playerGameAnalytics: Nullable<games.jass.logic.data.models.player.analytics.PlayerAnalytics>);
1412
+ get gameId(): string;
1413
+ get gameCreatedAt(): any/* kotlin.time.Instant */;
1414
+ get config(): games.jass.logic.data.models.table.config.Config;
1412
1415
  get playerAchievements(): Nullable<games.jass.logic.data.models.player.achievements.PlayerAchievements>;
1413
1416
  get playerGameAnalytics(): Nullable<games.jass.logic.data.models.player.analytics.PlayerAnalytics>;
1414
1417
  }