mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-12 10:02:58 +00:00
19 lines
406 B
C++
19 lines
406 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "DispenserTileEntity.h"
|
|
#include "java/Class.h"
|
|
|
|
class TileEntity;
|
|
|
|
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::string getName();
|
|
}; |