summaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/beacons/BeaconBeamSectionExtra.java
blob: 2f5698abfa44359e4fcf4560632965d4077097fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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();
}