Advertisement
FALSkills

Untitled

Oct 24th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. private static boolean click(Clickable clickable07, String... action){
  2. if(clickable07 instanceof Item){
  3. boolean value = ((Item)clickable07).click(action);
  4. General.println("Clicking item: " + ((Item) clickable07).name() + " with actions: " + Arrays
  5. .toString(action) + " , " + value);
  6. return value;
  7. }
  8.  
  9. //...
  10. return false;
  11. }
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement