From 256653501365eb4f95d3dddbcdfdc23a2a9594d5 Mon Sep 17 00:00:00 2001 From: OnyxDarkKnight Date: Tue, 15 Apr 2014 23:05:32 +0300 Subject: Moved source files --- .../darkknight/jewelrycraft/block/BlockGlow.java | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 eclipse/Jewelrycraft/common/darkknight/jewelrycraft/block/BlockGlow.java (limited to 'eclipse/Jewelrycraft/common/darkknight/jewelrycraft/block/BlockGlow.java') diff --git a/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/block/BlockGlow.java b/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/block/BlockGlow.java deleted file mode 100644 index f8a09d4..0000000 --- a/eclipse/Jewelrycraft/common/darkknight/jewelrycraft/block/BlockGlow.java +++ /dev/null @@ -1,39 +0,0 @@ -package darkknight.jewelrycraft.block; - -import net.minecraft.block.Block; -import net.minecraft.block.material.Material; -import net.minecraft.util.AxisAlignedBB; -import net.minecraft.world.World; - -public class BlockGlow extends Block -{ - protected BlockGlow() - { - super(Material.air); - } - - public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, int par2, int par3, int i) - { - return null; - } - - public boolean isCollidable() - { - return false; - } - - public boolean isOpaqueCube() - { - return false; - } - - public boolean renderAsNormalBlock() - { - return false; - } - - public int getRenderType() - { - return -1; - } -} -- cgit v1.2.3