* @param texture url to use for the block - must be a square PNG
* @param textureSize width and height of the texture in pixels
*/
public GenericCubeCustomBlock(String addon, String name, String texture, int textureSize) {
super(addon, name);
this.setBlockDesign(new GenericCubeBlockDesign(addon, texture, textureSize));
}