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

Method DrawString

client/src/main/java/jake2/client/Console.java:270–275  ·  view source on GitHub ↗
(int x, int y, String s)

Source from the content-addressed store, hash-verified

268 }
269
270 static void DrawString(int x, int y, String s) {
271 for (int i = 0; i < s.length(); i++) {
272 ClientGlobals.re.DrawChar(x, y, s.charAt(i));
273 x += 8;
274 }
275 }
276
277 static void DrawAltString(int x, int y, String s) {
278 for (int i = 0; i < s.length(); i++) {

Callers 2

ExecuteLayoutStringMethod · 0.95
DrawNotifyMethod · 0.95

Calls 1

DrawCharMethod · 0.65

Tested by

no test coverage detected