mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 12:38:12 +05:00
12 lines
182 B
C++
12 lines
182 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
class BookItem : public Item
|
|
{
|
|
public:
|
|
BookItem(int id);
|
|
|
|
bool isEnchantable(shared_ptr<ItemInstance> itemInstance);
|
|
int getEnchantmentValue();
|
|
}; |