blob: 30b440d87469781367c512fa0d2f102ed027407b (
plain)
1
2
3
4
5
6
|
package at.hannibal2.skyhanni.events
import at.hannibal2.skyhanni.utils.LorenzVec
import net.minecraft.entity.Entity
class EntityMoveEvent(val entity: Entity, val oldLocation: LorenzVec, val newLocation: LorenzVec, val distance: Double) : LorenzEvent()
|