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