mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-24 11:18:12 +05:00
15 lines
320 B
C++
15 lines
320 B
C++
#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();
|
|
}; |