mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-23 22:13:37 +00:00
13 lines
378 B
C++
13 lines
378 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
|
|
class SignItem : public Item {
|
|
public:
|
|
SignItem(int id);
|
|
|
|
virtual bool useOn(std::shared_ptr<ItemInstance> instance,
|
|
std::shared_ptr<Player> player, Level* level, int x,
|
|
int y, int z, int face, float clickX, float clickY,
|
|
float clickZ, bool bTestUseOnOnly = false);
|
|
}; |