(Graphics g, String text, int x, int y, int anchor)
| 106 | } |
| 107 | |
| 108 | public static void drawString(Graphics g, String text, int x, int y, int anchor) { |
| 109 | if (Config.getInstance().shadowed) { |
| 110 | int color = g.getColor(); |
| 111 | g.setColor((color) / 3 > 0x7f ? 0x333333 : 0xcccccc); |
| 112 | g.drawString(text, x + 1, y + 1, anchor); |
| 113 | g.setColor(color); |
| 114 | } |
| 115 | g.drawString(text, x, y, anchor); |
| 116 | } |
| 117 | |
| 118 | //public final static void resetCache() { roster=msg=bar=baloon=0; } |
| 119 | } |
no test coverage detected