blob: 1176b9a286f094b95edaefd3ca39b416955a96fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package com.thatgravyboat.skyblockhud.api.events;
import net.minecraft.scoreboard.ScoreObjective;
import net.minecraft.scoreboard.Scoreboard;
import net.minecraftforge.fml.common.eventhandler.Cancelable;
import net.minecraftforge.fml.common.eventhandler.Event;
@Cancelable
public class SidebarPreGetEvent extends Event {
public Scoreboard scoreboard;
public ScoreObjective objective;
public SidebarPreGetEvent(Scoreboard scoreboard, ScoreObjective objective) {
this.scoreboard = scoreboard;
this.objective = objective;
}
}
|