MCPcopy Create free account
hub / github.com/demoth/jake2 / Print

Method Print

client/src/main/java/jake2/client/Menu.java:338–345  ·  view source on GitHub ↗
(int cx, int cy, String str)

Source from the content-addressed store, hash-verified

336 }
337
338 public static void Print(int cx, int cy, String str) {
339 //while (*str)
340 for (int n = 0; n < str.length(); n++) {
341 DrawCharacter(cx, cy, str.charAt(n) + 128);
342 //str++;
343 cx += 8;
344 }
345 }
346
347 public static void PrintWhite(int cx, int cy, String str) {
348 for (int n = 0; n < str.length(); n++) {

Callers 2

SearchLocalGamesMethod · 0.95

Calls 1

DrawCharacterMethod · 0.95

Tested by

no test coverage detected