Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. private ImageButton imageButton;
  2. ....
  3. imageButton.addListener(new ClickListener() {
  4. public void clicked(InputEvent event, float x, float y){
  5. System.out.println("FCK YEAH!");
  6. }
  7. });
  8.  
  9. private Some some;//наследуется от актера
  10. ....
  11. some.addListener(new ClickListener() {
  12. public void clicked(InputEvent event, float x, float y){
  13.  
  14. System.out.println("CLICKED!");
  15. };
  16. }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement