MCPcopy Create free account
hub / github.com/boxbeam/RedLib / BlockPosition

Method BlockPosition

src/redempt/redlib/blockdata/BlockPosition.java:15–19  ·  view source on GitHub ↗
(int x, int y, int z)

Source from the content-addressed store, hash-verified

13 private final int z;
14
15 public BlockPosition(int x, int y, int z) {
16 this.x = x;
17 this.y = y;
18 this.z = z;
19 }
20
21 public BlockPosition(Block block) {
22 this(block.getX(), block.getY(), block.getZ());

Callers

nothing calls this directly

Calls 3

getYMethod · 0.80
getXMethod · 0.45
getZMethod · 0.45

Tested by

no test coverage detected