(int cx, int cy, String str)
| 345 | } |
| 346 | |
| 347 | public static void PrintWhite(int cx, int cy, String str) { |
| 348 | for (int n = 0; n < str.length(); n++) { |
| 349 | DrawCharacter(cx, cy, str.charAt(n)); |
| 350 | //str++; |
| 351 | cx += 8; |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | public static void DrawPic(int x, int y, String pic) { |
| 356 | ClientGlobals.re.DrawPic(x + ((ClientGlobals.viddef.getWidth() - 320) >> 1), y |
nothing calls this directly
no test coverage detected