Skip to content

koiifshd/test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

public static void TextBox(int row, int col, int width, int height, String text){ int area = width * height; if (text.length() < area){ for (int i = 0; i < area - text.length();i++){ text += " "; } } for (int r = 0; r < height; r++){ drawText(text.substring(r * width, (r + 1) * width), r, col); } }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published