blob: 3512f5ebde63272a731090be7ca1200a90769011 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package NET.worlds.network;
public abstract interface LoginMode
{
public static final int UNKNOWN = 0;
public static final int REGISTER = 1;
public static final int AUTHENTICATE = 2;
public static final int GUESTLOGIN = 3;
public static final int ABORT = 4;
}
/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\network\LoginMode.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/
|