blob: c63082a1231f7b21310753d476813d710dbd242f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
using namespace std;
#include "Item.h"
class MinecartItem : public Item
{
public:
int type;
MinecartItem(int id, int type);
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);
};
|