※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
public void mouseClicked(MouseEvent ev){
Graphics gr = mc.getGraphics();
int x = ev.getX();
int y = ev.getY();
int r = (int)(Math.random() * 255);
int g = (int)(Math.random() * 255);
int b = (int)(Math.random() * 255);
gr.setColor(new Color(r,g,b));
gr.fillOval(x - 10,y - 10,20,20);
gr.dispose();
}
| << 前へ |