mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 12:23:07 +00:00
13 lines
284 B
C++
13 lines
284 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);
|
|
}; |