draw_highscore - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Draws the highscore table in the current room stretched to fill the given rectangle using the currently set font.
Parameter | Data Type | Description |
---|---|---|
x1 | integer | x coordinate of the top-left corner of the highscore area |
y1 | integer | y coordinate |
x2 | integer | x coordinate of the bottom-right corner of the highscore area |
y2 | integer | y coordinate |
void: This function does not return anything.
// demonstrates drawing the highscore table in the top-left corner of the room
draw_highscore(5, 5, 105, 135);
NOTOC