2013-12-14 19:40:30 -05:00
|
|
|
package ch.spacebase.mc.protocol;
|
|
|
|
|
|
|
|
public class ProtocolConstants {
|
|
|
|
|
|
|
|
// General Constants
|
2014-01-30 23:27:52 -05:00
|
|
|
public static final String GAME_VERSION = "14w05a";
|
|
|
|
public static final int PROTOCOL_VERSION = 9;
|
2013-12-14 19:40:30 -05:00
|
|
|
|
|
|
|
// General Key Constants
|
|
|
|
public static final String PROFILE_KEY = "profile";
|
|
|
|
|
|
|
|
// Client Key Constants
|
|
|
|
public static final String PING_KEY = "ping";
|
|
|
|
public static final String SERVER_INFO_HANDLER_KEY = "server-info-handler";
|
|
|
|
public static final String SERVER_PING_TIME_HANDLER_KEY = "server-ping-time-handler";
|
|
|
|
|
|
|
|
// Server Key Constants
|
|
|
|
public static final String VERIFY_USERS_KEY = "verify-users";
|
|
|
|
public static final String SERVER_INFO_BUILDER_KEY = "info-builder";
|
|
|
|
public static final String SERVER_LOGIN_HANDLER_KEY = "login-handler";
|
|
|
|
|
|
|
|
}
|