aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/detrav/events/DetravBlockBreakEvent.java
blob: ac0c4d873ced0ac3e3cd2a1eed8fb46d9038b08d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.detrav.events;

import net.minecraft.block.Block;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
import net.minecraftforge.event.world.BlockEvent;

/**
 * Created by wital_000 on 14.04.2016.
 */
public class DetravBlockBreakEvent extends BlockEvent.BreakEvent {
    public DetravBlockBreakEvent(int x, int y, int z, World world, Block block, int blockMetadata, EntityPlayer player) {
        super(x, y, z, world, block, blockMetadata, player);
    }
}