9 lines
165 B
Ruby
9 lines
165 B
Ruby
class XinStick < net.minecraft.item.Item
|
|
def initialize(id)
|
|
super(id)
|
|
setIconIndex(37)
|
|
end
|
|
def superhappyfuntime
|
|
puts 'superhappyfuntime'
|
|
end
|
|
end |