Package net.glowstone.net.message.play.player

Examples of net.glowstone.net.message.play.player.PlayerPositionMessage


        double x = buffer.readDouble();
        double y = buffer.readDouble();
        double z = buffer.readDouble();
        boolean onGround = buffer.readBoolean();

        return new PlayerPositionMessage(onGround, x, y, z);
    }
View Full Code Here

TOP

Related Classes of net.glowstone.net.message.play.player.PlayerPositionMessage

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.