Converted ItemHammer to scala

This commit is contained in:
Robert S 2014-07-22 02:32:26 -04:00
parent f26318fbcb
commit c734a80f5d
2 changed files with 9 additions and 14 deletions

View file

@ -1,14 +0,0 @@
package resonantinduction.archaic.engineering;
import net.minecraft.item.Item;
/** Item used to interact with engineering table to crush ore */
public class ItemHammer extends Item
{
public ItemHammer(int id)
{
super(id);
setMaxStackSize(1);
setMaxDamage(400);
}
}

View file

@ -0,0 +1,9 @@
package resonantinduction.archaic.engineering;
import net.minecraft.item.Item;
/** Item used to interact with engineering table to crush ore */
class ItemHammer extends Item {
setMaxStackSize( 1 );
setMaxDamage( 400 );
}