aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/BookItem.h
blob: f60fc417deee5c6ab6935ee3d68aa4518424cbc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "Item.h"

class BookItem : public Item
{
public:
	BookItem(int id);

	bool isEnchantable(shared_ptr<ItemInstance> itemInstance);
	int getEnchantmentValue();
};