Skip to content

Commit

Permalink
paramparam
Browse files Browse the repository at this point in the history
  • Loading branch information
opZywl authored Jan 19, 2025
1 parent 18718c7 commit 0f1ee6c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package net.ccbluex.liquidbounce.ui.client.hud.element.elements
import net.ccbluex.liquidbounce.LiquidBounce.CLIENT_NAME
import net.ccbluex.liquidbounce.LiquidBounce.CLIENT_WEBSITE
import net.ccbluex.liquidbounce.config.*
import net.ccbluex.liquidbounce.features.module.modules.render.AntiBlind
import net.ccbluex.liquidbounce.ui.client.hud.element.Border
import net.ccbluex.liquidbounce.ui.client.hud.element.Element
import net.ccbluex.liquidbounce.ui.client.hud.element.ElementInfo
Expand Down Expand Up @@ -36,7 +37,7 @@ import java.awt.Color
@ElementInfo(name = "Scoreboard")
class ScoreboardElement(
x: Double = 5.0, y: Double = 0.0, scale: Float = 1F, side: Side = Side(Side.Horizontal.RIGHT, Side.Vertical.MIDDLE)
) : Element(x, y, scale, side) {
) : Element("Scoreboard", x, y, scale, side) {

private val textColor by color("TextColor", Color.WHITE)
private val backgroundColor by color("BackgroundColor", Color.BLACK.withAlpha(95))
Expand Down Expand Up @@ -234,4 +235,4 @@ class ScoreboardElement(
return null
}

}
}

0 comments on commit 0f1ee6c

Please sign in to comment.