aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events/ResetEntityHurtEvent.kt
blob: 7768e6586886c6a86b885efb6867720c523fe01d (plain)
1
2
3
4
5
6
7
8
9
package at.hannibal2.skyhanni.events

import net.minecraft.entity.EntityLivingBase
import java.awt.Color

// TODO remove
class ResetEntityHurtEvent(val entity: EntityLivingBase, var shouldReset: Boolean) : LorenzEvent()

fun Color.withAlpha(alpha: Int): Int = (alpha.coerceIn(0, 255) shl 24) or (this.rgb and 0x00ffffff)