Mastermindzh

Thomas voorbeeld

Sep 10th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. int clickX = 0;
  2. int clickY = 0;
  3.  
  4. void setup(){
  5.   size(400,400);
  6. }
  7.  
  8. void draw(){
  9.   println("x= " + clickX + "Y = " + clickY);
  10. }
  11.  
  12. void mouseClicked(){
  13.   clickX = mouseX;
  14.   clickY = mouseY;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment