2017-04-18 20:53:14 +02:00

15 lines
245 B
Java

package com.hbm.interfaces;
import net.minecraft.world.World;
public interface IBomb {
/////////////people
//Months later I found this joke again
//I'm not even sorry
void explode(World world, int x, int y, int z);
}