MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / PositionImpl

Class PositionImpl

src/main/java/net/minecraft/dispenser/PositionImpl.java:3–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package net.minecraft.dispenser;
2
3public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected