Started work on the player detector.
This commit is contained in:
parent
08cbe33f00
commit
2c31b9211c
7 changed files with 88 additions and 0 deletions
|
@ -0,0 +1,12 @@
|
|||
package techreborn.itemblocks;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import reborncore.common.itemblock.ItemBlockBase;
|
||||
import techreborn.blocks.BlockPlayerDetector;
|
||||
import techreborn.init.ModBlocks;
|
||||
|
||||
public class ItemBlockPlayerDetector extends ItemBlockBase {
|
||||
public ItemBlockPlayerDetector(Block block) {
|
||||
super(ModBlocks.playerDetector, ModBlocks.playerDetector, BlockPlayerDetector.types);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue