mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 11:42:28 +00:00
13 lines
385 B
C++
13 lines
385 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "Item.h"
|
|
|
|
class SaddleItem : public Item
|
|
{
|
|
public:
|
|
SaddleItem(int id);
|
|
|
|
virtual bool interactEnemy(shared_ptr<ItemInstance> itemInstance, shared_ptr<Player> player, shared_ptr<LivingEntity> mob);
|
|
virtual bool hurtEnemy(shared_ptr<ItemInstance> itemInstance, shared_ptr<LivingEntity> mob, shared_ptr<LivingEntity> attacker);
|
|
}; |