Made X, Y, and Z components in Vector protected.

This commit is contained in:
sk89q
2011-01-02 16:41:26 +08:00
committed by Nathan Adams
parent a662901cb5
commit 6bb54f57d3

View File

@@ -8,9 +8,9 @@ package org.bukkit;
public class Vector implements Cloneable {
private static final long serialVersionUID = -2657651106777219169L;
private double x;
private double y;
private double z;
protected double x;
protected double y;
protected double z;
public Vector(int x, int y, int z) {
this.x = x;