13 lines
291 B
Java
13 lines
291 B
Java
package dev.zontreck.otemod.zschem;
|
|
|
|
import net.minecraftforge.event.level.ExplosionEvent;
|
|
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
|
|
|
public class EventHandler {
|
|
|
|
@SubscribeEvent
|
|
public void onDetonate(ExplosionEvent.Detonate ev)
|
|
{
|
|
|
|
}
|
|
}
|