diff options
Diffstat (limited to 'source/items/ItemSign.h')
-rw-r--r-- | source/items/ItemSign.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/source/items/ItemSign.h b/source/items/ItemSign.h deleted file mode 100644 index a0c6aaa9c..000000000 --- a/source/items/ItemSign.h +++ /dev/null @@ -1,26 +0,0 @@ -
-#pragma once
-
-#include "ItemHandler.h"
-#include "../World.h"
-
-class cItemSignHandler : public cItemHandler
-{
-public:
- cItemSignHandler(int a_ItemID)
- : cItemHandler(a_ItemID)
- {
-
- }
-
- virtual bool IsPlaceable() override
- {
- return true;
- }
-
- virtual BLOCKTYPE GetBlockType() override
- {
- return E_BLOCK_SIGN_POST;
- }
-
-};
\ No newline at end of file |