Skip to content

Instantly share code, notes, and snippets.

@dazsim
Created April 29, 2017 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dazsim/3858fbadaaedd3329b024eabf7240e55 to your computer and use it in GitHub Desktop.
Save dazsim/3858fbadaaedd3329b024eabf7240e55 to your computer and use it in GitHub Desktop.
package com.immersiveminds.beimcraft.tile;
import net.minecraft.block.Block;
import net.minecraft.world.World;
public class TileFlatInsulated extends TileCeiling{
public TileFlatInsulated(boolean ins, boolean sus, boolean stab, int ins1, int sus1, int stab1,int cost) {
super(ins, sus, stab, ins1, sus1, stab1,cost);
System.out.println("this is a flat insulated tile");
// TODO Auto-generated constructor stub
}
@Override
public boolean shouldRefresh(Block oldBlock, Block newBlock, int oldMeta, int newMeta, World world, int x, int y, int z)
{
return super.shouldRefresh(oldBlock,newBlock,oldMeta,newMeta,world,x,y,z);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment