blob: d04113c82b492677673713e311bbf2e821334192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include "DispenserTileEntity.h"
class DropperTileEntity : public DispenserTileEntity
{
public:
eINSTANCEOF GetType() { return eTYPE_DROPPERTILEENTITY; }
static TileEntity *create() { return new DropperTileEntity(); }
// 4J Added
virtual shared_ptr<TileEntity> clone();
public:
wstring getName();
};
|