Files
MinecraftCommunityEdition-c…/Minecraft.World/CarrotOnAStickItem.h
LazyByteDev b40d5e9d01 src stuff
2026-03-02 03:31:00 -05:00

13 lines
272 B
C++

#pragma once
#include "Item.h"
class CarrotOnAStickItem : public Item
{
public:
CarrotOnAStickItem(int id);
bool isHandEquipped();
bool isMirroredArt();
shared_ptr<ItemInstance> use(shared_ptr<ItemInstance> itemInstance, Level *level, shared_ptr<Player> player);
};