TrashScrape

1

Nov 25th, 2021 (edited)
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class Pen {
  2. String type = "gel";
  3. String color = "blue";
  4. int point = 10;
  5.  
  6. static boolean clicked = false;
  7.  
  8. public static void click() {
  9. clicked = true;
  10. }
  11. public static void unclick(){
  12. clicked = false;
  13. }
Add Comment
Please, Sign In to add comment