* @param textureSize width and height of the texture in pixels
* @param rotate will the block rotate to face the player when placed
*/
public GenericCubeCustomBlock(Plugin plugin, String name, int blockId, int metadata, String texture, int textureSize, boolean rotate) {
super(plugin, name, blockId, metadata, rotate);
this.setBlockDesign(new GenericCubeBlockDesign(plugin, texture, textureSize));
}