blob: 61f8d824f39043e5cd486a3f42e8a54e4a1cc986 (
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 javax.annotation.Nullable;
import net.minecraft.entity.Entity;
import net.minecraftforge.fml.common.eventhandler.Event;
public class SkyBlockEntityKilled extends Event {
public String id;
@Nullable
public Entity entity;
public SkyBlockEntityKilled(String id, @Nullable Entity entity) {
this.id = id;
this.entity = entity;
}
}
|