| 1 | package net.minecraft.dispenser; |
| 2 | |
| 3 | public class PositionImpl implements IPosition |
| 4 | { |
| 5 | protected final double x; |
| 6 | protected final double y; |
| 7 | protected final double z; |
| 8 | |
| 9 | public PositionImpl(double xCoord, double yCoord, double zCoord) |
| 10 | { |
| 11 | this.x = xCoord; |
| 12 | this.y = yCoord; |
| 13 | this.z = zCoord; |
| 14 | } |
| 15 | |
| 16 | public double getX() |
| 17 | { |
| 18 | return this.x; |
| 19 | } |
| 20 | |
| 21 | public double getY() |
| 22 | { |
| 23 | return this.y; |
| 24 | } |
| 25 | |
| 26 | public double getZ() |
| 27 | { |
| 28 | return this.z; |
| 29 | } |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected