diff options
Diffstat (limited to 'src/main/java/moe/nea/beacons/BeaconBeamSectionExtra.java')
-rw-r--r-- | src/main/java/moe/nea/beacons/BeaconBeamSectionExtra.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/moe/nea/beacons/BeaconBeamSectionExtra.java b/src/main/java/moe/nea/beacons/BeaconBeamSectionExtra.java new file mode 100644 index 0000000..2f5698a --- /dev/null +++ b/src/main/java/moe/nea/beacons/BeaconBeamSectionExtra.java @@ -0,0 +1,13 @@ +package moe.nea.beacons; + +import net.minecraft.world.level.block.entity.BeaconBlockEntity; + +public interface BeaconBeamSectionExtra { + static BeaconBeamSectionExtra cast(BeaconBlockEntity.BeaconBeamSection beaconBeamSection) { + return (BeaconBeamSectionExtra) beaconBeamSection; + } + + void setRangeExtenders_nea(int newRangeExtenders); + + int getRangeExtenders_nea(); +} |