diff options
Diffstat (limited to 'src/Items/ItemString.h')
-rw-r--r-- | src/Items/ItemString.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/Items/ItemString.h b/src/Items/ItemString.h deleted file mode 100644 index e7c9617d4..000000000 --- a/src/Items/ItemString.h +++ /dev/null @@ -1,51 +0,0 @@ - -#pragma once - -#include "ItemHandler.h" - - - - - -class cItemStringHandler: - public cItemHandler -{ - using Super = cItemHandler; - -public: - - cItemStringHandler(int a_ItemType): - Super(a_ItemType) - { - } - - - - - - virtual bool IsPlaceable(void) override - { - return true; - } - - - - - - virtual bool GetPlacementBlockTypeMeta( - cWorld * a_World, cPlayer * a_Player, - const Vector3i a_PlacedBlockPos, - eBlockFace a_ClickedBlockFace, - const Vector3i a_CursorPos, - BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta - ) override - { - a_BlockType = E_BLOCK_TRIPWIRE; - a_BlockMeta = 0; - return true; - } -}; - - - - |