mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
235 B
Java
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;
|
|
}
|
|
|
|
}
|