MCPcopy Create free account
hub / github.com/cabaletta/baritone / AbstractMask

Class AbstractMask

src/api/java/baritone/api/schematic/mask/AbstractMask.java:23–49  ·  view source on GitHub ↗

@author Brady

Source from the content-addressed store, hash-verified

21 * @author Brady
22 */
23public abstract class AbstractMask implements Mask {
24
25 private final int widthX;
26 private final int heightY;
27 private final int lengthZ;
28
29 public AbstractMask(int widthX, int heightY, int lengthZ) {
30 this.widthX = widthX;
31 this.heightY = heightY;
32 this.lengthZ = lengthZ;
33 }
34
35 @Override
36 public int widthX() {
37 return this.widthX;
38 }
39
40 @Override
41 public int heightY() {
42 return this.heightY;
43 }
44
45 @Override
46 public int lengthZ() {
47 return this.lengthZ;
48 }
49}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected