Package org.spout.vanilla.protocol.handler.player.conn

Examples of org.spout.vanilla.protocol.handler.player.conn.PlayerPingHandler


  public VanillaProtocol() {
    super("Vanilla", DEFAULT_PORT, 512);
    // THIS FORMATTING IS CORRECT NO MATTER WHAT ANY AUTOFORMATTER SAYS. DON'T CHANGE IT
    /* 0x00 */
    registerPacket(PlayerPingCodec.class, new PlayerPingHandler());
    /* 0x01 */
    registerPacket(PlayerLoginRequestCodec.class, new PlayerLoginRequestHandler());
    /* 0x02 */
    registerPacket(PlayerHandshakeCodec.class, new PlayerHandshakeHandler());
    /* 0x03 */
 
View Full Code Here

TOP

Related Classes of org.spout.vanilla.protocol.handler.player.conn.PlayerPingHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.