blob: 6265e7593f9e885ebd0c7e8e7caa956b6a3c2c9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
using namespace std;
#include "Item.h"
class SignItem : public Item
{
public:
SignItem(int id);
virtual bool useOn(shared_ptr<ItemInstance> instance, shared_ptr<Player> player, Level *level, int x, int y, int z, int face, float clickX, float clickY, float clickZ, bool bTestUseOnOnly=false);
};
|