2026-03-01 12:16:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "Item.h"
|
|
|
|
|
|
|
|
|
|
class BookItem : public Item
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
BookItem(int id);
|
|
|
|
|
|
2026-03-02 17:37:16 +07:00
|
|
|
bool isEnchantable(shared_ptr<ItemInstance> itemInstance);
|
2026-03-01 12:16:08 +08:00
|
|
|
int getEnchantmentValue();
|
|
|
|
|
};
|