Package-level declarations
Types
Link copied to clipboard
data class ScoreboardConfiguration(val title: Component = Component.text("Dummy title", TextColor.color(255, 102, 0)), val entries: List<ScoreboardEntry> = listOf(ScoreboardEntry("team0", Component.empty(), Component.empty(), "test", 0)), val update: Int = ScoreboardUpdate.ECONOMY + ScoreboardUpdate.MOVE, val defaultMineDisplay: Component = Component.text("Spawn"))
The configuration for the scoreboard.
Link copied to clipboard
The Context which is used to update the variables.
Link copied to clipboard
data class ScoreboardEntry(val teamName: String, val prefix: Component, val suffix: Component, val entry: String, val score: Int)
An entry for the sidebar of the scoreboard.
Link copied to clipboard
An Enum of all possible update events, that can be used to trigger a scoreboard update.