2017-11-28 21:53:42 +01:00

18 lines
235 B
Java

package com.hbm.items.special;
import net.minecraft.item.Item;
public class ItemCatalyst extends Item {
int color;
public ItemCatalyst(int color) {
this.color = color;
}
public int getColor() {
return this.color;
}
}