blob: bd03261ea44a8140f69c29bce82d4283742d1f8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package at.hannibal2.skyhanni.events
import at.hannibal2.skyhanni.utils.LocationUtils.distanceToPlayer
import at.hannibal2.skyhanni.utils.LorenzVec
import net.minecraftforge.fml.common.eventhandler.Cancelable
@Cancelable
class PlaySoundEvent(val soundName: String, val location: LorenzVec, val pitch: Float, val volume: Float) :
LorenzEvent() {
val distanceToPlayer by lazy { location.distanceToPlayer() }
}
|