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