add get functions

This commit is contained in:
Babbaj 2019-07-21 22:17:21 -04:00
parent 8bf977060e
commit 21e9c0b7c1
No known key found for this signature in database
GPG Key ID: 48FD0BEFD63C8E3F
1 changed files with 15 additions and 0 deletions

View File

@ -23,4 +23,19 @@ public class MBlockPos extends BlockPos {
private MBlockPos() {
super(6, 6, 6);
}
@Override
public int getX() {
throw new LinkageError("LOL");
}
@Override
public int getY() {
throw new LinkageError("LOL");
}
@Override
public int getZ() {
throw new LinkageError("LOL");
}
}