2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "Item.h"
|
|
|
|
|
|
|
|
|
|
class CarrotOnAStickItem : public Item
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CarrotOnAStickItem(int id);
|
|
|
|
|
|
|
|
|
|
bool isHandEquipped();
|
|
|
|
|
bool isMirroredArt();
|
2026-03-02 17:37:16 +07:00
|
|
|
shared_ptr<ItemInstance> use(shared_ptr<ItemInstance> itemInstance, Level *level, shared_ptr<Player> player);
|
2026-03-01 12:16:08 +08:00
|
|
|
};
|