mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-04-13 09:41:09 +00:00
Made X, Y, and Z components in Vector protected.
This commit is contained in:
parent
e3fe73ca04
commit
c81b816b72
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue