Again some stuff... still learning git ;)

This commit is contained in:
Robert Sosnitzka
2016-05-02 11:13:34 +02:00
parent 2533654bb9
commit 72b27f87c7
50 changed files with 280 additions and 35 deletions

View File

@@ -0,0 +1,11 @@
package blocks;
import blocks.category.BasicBlockOre;
import net.minecraft.block.material.Material;
public class BlockIgnititeOre extends BasicBlockOre {
public BlockIgnititeOre() {
super("ignitite_ore", Material.ROCK, 3.0f, 5.0f);
}
}