Highscore_set_font - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Sets the font used for the text in the highscore dialog.
Parameters
Parameter | Data Type | Description |
---|---|---|
name | string | name of the font |
size | integer | size of the font characters |
style | integer | style of the font (0=normal, 1= bold, 2=italic, 3=bold-italic) |
Return Values
void: This function does not return anything.
Example Call
// demonstrates setting the font of the highscore dialog
highscore_set_font("Arial", 12, 0);
NOTOC