mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-30 05:35:00 +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();
|
|
}; |