mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 05:47:45 +01:00
Made X, Y, and Z components in Vector protected.
By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
parent
1ce014ded9
commit
a1efe84ebc
@ -8,9 +8,9 @@ package org.bukkit;
|
|||||||
public class Vector implements Cloneable {
|
public class Vector implements Cloneable {
|
||||||
private static final long serialVersionUID = -2657651106777219169L;
|
private static final long serialVersionUID = -2657651106777219169L;
|
||||||
|
|
||||||
private double x;
|
protected double x;
|
||||||
private double y;
|
protected double y;
|
||||||
private double z;
|
protected double z;
|
||||||
|
|
||||||
public Vector(int x, int y, int z) {
|
public Vector(int x, int y, int z) {
|
||||||
this.x = x;
|
this.x = x;
|
||||||
|
Loading…
Reference in New Issue
Block a user