mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 17:06:57 +01:00
38 lines
673 B
Markdown
38 lines
673 B
Markdown
|
---
|
||
|
title: gameHighScores
|
||
|
description: Contains list of game high scores
|
||
|
---
|
||
|
## Constructor: gameHighScores
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Contains list of game high scores
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|:-------------:|:--------:|------------:|
|
||
|
|scores|Array of [gameHighScore](../constructors/gameHighScore.md) | Yes|List of game high scores|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [GameHighScores](../types/GameHighScores.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$gameHighScores = ['_' => 'gameHighScores', 'scores' => [gameHighScore], ];
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
|
||
|
```
|
||
|
gameHighScores={_='gameHighScores', scores={gameHighScore}, }
|
||
|
|
||
|
```
|
||
|
|
||
|
|