mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-07-04 10:04:56 +00:00
12 lines
326 B
C++
12 lines
326 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
class WritingBookItem : public Item
|
|
{
|
|
public:
|
|
WritingBookItem(int id);
|
|
|
|
virtual shared_ptr<ItemInstance> use(shared_ptr<ItemInstance> instance, Level* level, shared_ptr<Player> player);
|
|
virtual bool TestUse(shared_ptr<ItemInstance> itemInstance, Level* level, shared_ptr<Player> player);
|
|
}; |