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