summaryrefslogtreecommitdiffstats
path: root/source/blocks/BlockEntity.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/blocks/BlockEntity.h')
-rw-r--r--source/blocks/BlockEntity.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/source/blocks/BlockEntity.h b/source/blocks/BlockEntity.h
deleted file mode 100644
index caf6ee342..000000000
--- a/source/blocks/BlockEntity.h
+++ /dev/null
@@ -1,31 +0,0 @@
-
-#pragma once
-
-#include "BlockHandler.h"
-
-
-
-
-
-class cBlockEntityHandler : public cBlockHandler
-{
-public:
- cBlockEntityHandler(BLOCKTYPE a_BlockID)
- : cBlockHandler(a_BlockID)
- {
- }
-
- virtual void OnUse(cWorld * a_World, cPlayer *a_Player, int a_BlockX, int a_BlockY, int a_BlockZ) override
- {
- a_World->UseBlockEntity(a_Player, a_BlockX, a_BlockY, a_BlockZ);
- }
-
- virtual bool IsUseable() override
- {
- return true;
- }
-};
-
-
-
-