* @param yMax maximum y coordinate of the cuboid
* @param zMax maximum z coordinate of the cuboid
* @param rotate will the block rotate to face the player when placed
*/
public GenericCuboidCustomBlock(Plugin plugin, String name, int blockId, int metadata, String texture, int textureSize, float xMin, float yMin, float zMin, float xMax, float yMax, float zMax, boolean rotate) {
this(plugin, name, blockId, metadata, new GenericCuboidBlockDesign(plugin, texture, textureSize, xMin, yMin, zMin, xMax, yMax, zMax), rotate);
}