/* */ package NET.worlds.scape; /* */ /* */ /* */ /* */ /* */ /* */ public class MouseEvent /* */ extends UserEvent /* */ { /* */ public int x; /* */ /* */ /* */ /* */ public int y; /* */ /* */ /* */ /* */ /* */ public MouseEvent(int time, WObject target, int x, int y) /* */ { /* 21 */ super(time, null, target); /* 22 */ this.x = x; /* 23 */ this.y = y; /* */ } /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ public boolean deliver(Object o) /* */ { /* 35 */ if (((o instanceof MouseHandler)) && /* 36 */ (((MouseHandler)o).handle(this))) /* 37 */ return true; /* 38 */ return super.deliver(o); /* */ } /* */ } /* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\MouseEvent.class * Java compiler version: 6 (50.0) * JD-Core Version: 0.7.1 */