mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-28 21:53:36 +00:00
11 lines
196 B
C++
11 lines
196 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
class BookItem : public Item {
|
|
public:
|
|
BookItem(int id);
|
|
|
|
bool isEnchantable(std::shared_ptr<ItemInstance> itemInstance);
|
|
int getEnchantmentValue();
|
|
}; |