ConquerHackLeaderboardEntry
python
class ConquerHackLeaderboardEntry(BaseModel):
name: str
tiles: int
isAlive: bool
deathTick: Optional[int]java
public class ConquerHackLeaderboardEntry {
@NotNull public String name;
public int tiles;
public boolean isAlive;
@Nullable public Tick deathTick;
}Encapsulates information about a single entry in the ConquerHack leaderboard, which tracks the performance of players in a game.
Attributes
| Attribute | Type | Description |
|---|---|---|
name | str | The player's display name (username). |
tiles | int | The number of tiles the player currently owns. |
isAlive | bool | Whether the player is currently alive in the game. |
deathTick | Tick or None/null | The tick at which the player was eliminated, or None/null if the player is still alive. |
