10 lines
206 B
Java
Executable file
10 lines
206 B
Java
Executable file
package common.item.material;
|
|
|
|
import common.item.Item;
|
|
import common.model.Transforms;
|
|
|
|
public class ItemNugget extends Item {
|
|
public Transforms getTransform() {
|
|
return Transforms.NUGGET;
|
|
}
|
|
}
|