1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-15 01:46:55 +01:00
MadelineProto/docs/TD_docs/constructors/gameHighScores.md
2017-07-23 16:33:46 +02:00

792 B

title description
gameHighScores Contains list of game high scores

Constructor: gameHighScores

Back to constructors index

Contains list of game high scores

Attributes:

Name Type Required Description
scores Array of gameHighScore Yes List of game high scores

Type: GameHighScores

Example:

$gameHighScores = ['_' => 'gameHighScores', 'scores' => [gameHighScore]];

PWRTelegram json-encoded version:

{"_": "gameHighScores", "scores": [gameHighScore]}

Or, if you're into Lua:

gameHighScores={_='gameHighScores', scores={gameHighScore}}