Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.
There isn't one by default, but you can make one easily.
Code:
class Bitmap
def draw_stext(x, y, width, height, text, align=0)
draw_text(x, y, width, height, text, align)
fill_rect(x, y+height/2, width, 1, Font.color)
end
end