blob: 5f39b59db0403c3924a88b2a9d7917163799d18a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package NET.worlds.scape;
import java.awt.Component;
import java.awt.Point;
public abstract interface ClickEventHandler
{
public static final int DOWN = 1;
public static final int UP = 2;
public static final int META = 4;
public static final int DRAG = 8;
public abstract void clickEvent(Component paramComponent, Point paramPoint, int paramInt);
}
/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\ClickEventHandler.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/
|