Advertisement
Guest User

Untitled

a guest
Feb 24th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Haxe 0.22 KB | None | 0 0
  1. class ClickHandler implements View_OnClickListener {
  2.     private var _fn:View->Void;
  3.     public function new(fn:View->Void) {
  4.         _fn = fn;
  5.     }
  6.    
  7.     public function onClick(v:View) {
  8.         _fn(v);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement