aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/RedStoneItem.h
blob: 01be92ffaa967e036172e8e739fbfeba077bdea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
using namespace std;

#include "Item.h"

 class RedStoneItem : public Item 
 {
 public:
	 RedStoneItem(int id);

 public:
	 virtual bool useOn(shared_ptr<ItemInstance> itemInstance, shared_ptr<Player> player, Level *level, int x, int y, int z, int face, float clickX, float clickY, float clickZ, bool bTestUseOnOnly=false);
};