blob: 9d02993de91094fc8a0dec77149fd26ca8f681fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package com.thatgravyboat.skyblockhud.api.events;
import net.minecraft.entity.Entity;
import net.minecraftforge.fml.common.eventhandler.Event;
public class SkyBlockEntityKilled extends Event {
public String id;
public Entity entity;
public SkyBlockEntityKilled(String id, Entity entity) {
this.id = id;
this.entity = entity;
}
}
|