mirror of
https://github.com/GeyserMC/MCProtocolLib.git
synced 2025-01-10 06:32:19 -05:00
22 lines
742 B
Java
22 lines
742 B
Java
package org.spacehq.mc.protocol;
|
|
|
|
public class ProtocolConstants {
|
|
|
|
// General Constants
|
|
public static final String GAME_VERSION = "14w08a";
|
|
public static final int PROTOCOL_VERSION = 12;
|
|
|
|
// 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";
|
|
|
|
}
|