aether-legacy/src/main/java/com/legacy/aether/api/events/moas/MoaHatchEvent.java
2018-12-06 23:32:48 -06:00

21 lines
406 B
Java

package com.legacy.aether.api.events.moas;
import net.minecraft.tileentity.TileEntity;
import com.legacy.aether.api.moa.AetherMoaType;
public class MoaHatchEvent extends MoaEvent {
private TileEntity incubator;
public MoaHatchEvent(AetherMoaType moaType, TileEntity incubator) {
super(moaType);
this.incubator = incubator;
}
public TileEntity getTileEntity() {
return this.incubator;
}
}