December 2014 files
This commit is contained in:
15
Minecraft.World/DropperTileEntity.h
Normal file
15
Minecraft.World/DropperTileEntity.h
Normal file
@@ -0,0 +1,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();
|
||||
};
|
||||
Reference in New Issue
Block a user