blob: 15fb01ac59e2c2bc310cb8e8cad8687db9853720 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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;
}
}
|