mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 07:03:36 +00:00
14 lines
345 B
C++
14 lines
345 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 std::shared_ptr<TileEntity> clone();
|
|
|
|
public:
|
|
std::wstring getName();
|
|
}; |