Draw_highscore - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Draws the highscore table in the current room stretched to fill the given rectangle using the currently set font.
Parameters
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 |
Return Values
void: This function does not return anything.
Example Call
// demonstrates drawing the highscore table in the top-left corner of the room
draw_highscore(5, 5, 105, 135);
NOTOC