the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2
3#include "DispenserTileEntity.h"
4
5class DropperTileEntity : public DispenserTileEntity
6{
7public:
8 eINSTANCEOF GetType() { return eTYPE_DROPPERTILEENTITY; }
9 static TileEntity *create() { return new DropperTileEntity(); }
10 // 4J Added
11 virtual shared_ptr<TileEntity> clone();
12
13public:
14 wstring getName();
15};