first commit
This commit is contained in:
25
Minecraft.World/EnchantmentTableEntity.h
Normal file
25
Minecraft.World/EnchantmentTableEntity.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
#include "TileEntity.h"
|
||||
class Random;
|
||||
|
||||
class EnchantmentTableEntity : public TileEntity
|
||||
{
|
||||
public:
|
||||
eINSTANCEOF GetType() { return eTYPE_ENCHANTMENTTABLEENTITY; }
|
||||
static TileEntity *create() { return new EnchantmentTableEntity(); }
|
||||
|
||||
public:
|
||||
int time;
|
||||
float flip, oFlip, flipT, flipA;
|
||||
float open, oOpen;
|
||||
float rot, oRot, tRot;
|
||||
private:
|
||||
Random *random;
|
||||
public:
|
||||
EnchantmentTableEntity();
|
||||
~EnchantmentTableEntity();
|
||||
virtual void tick();
|
||||
|
||||
// 4J Added
|
||||
virtual shared_ptr<TileEntity> clone();
|
||||
};
|
||||
Reference in New Issue
Block a user