Sharpcraft.Networking.Packets.PlayerPositionAndLookPacket.PlayerPositionAndLookPacket C# (CSharp) Method

PlayerPositionAndLookPacket() public method

public PlayerPositionAndLookPacket ( double x = 0.0, double y = 0.0, double stance = 0.0, double z = 0.0, float yaw = 0.0f, float pitch = 0.0f, bool onGround = false ) : Sharpcraft.Networking.Enums
x double
y double
stance double
z double
yaw float
pitch float
onGround bool
return Sharpcraft.Networking.Enums
        public PlayerPositionAndLookPacket(double x = 0.0, double y = 0.0, double stance = 0.0, double z = 0.0,
			float yaw = 0.0f, float pitch = 0.0f, bool onGround = false)
            : base(PacketType.PlayerPositionAndLook)
        {
            X = x;
            Y = y;
            Z = z;
            Stance = stance;
            Yaw = yaw;
            Pitch = pitch;
            OnGround = onGround;
        }
PlayerPositionAndLookPacket