Ejemplo n.º 1
0
 public static void drawRect(
     Screen screen, int x, int y, int width, int height, int colour, boolean fixed) {
   screen.drawRect(x, y, width, height, colour, fixed);
 }
Ejemplo n.º 2
0
 public static void drawRect(Screen screen, int x, int y, int width, int height, boolean fixed) {
   screen.drawRect(x, y, width, height, 0xff0000, fixed);
 }