diff options
Diffstat (limited to '')
-rw-r--r-- | src/Block.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/Block.cpp b/src/Block.cpp index 41199de..56fa371 100644 --- a/src/Block.cpp +++ b/src/Block.cpp @@ -1,25 +1,5 @@ #include "Block.hpp" -#include <string> - -Block::~Block() {} - -Block::Block(unsigned short id, unsigned char state, - unsigned char light, unsigned char sky) - : id(id), state(state), light(light), sky (sky) {} - -Block::Block() : id(0), state(0), light(0), sky(0) {} - -bool operator==(const BlockId& lhs, const BlockId &rhs) { - return (lhs.id == rhs.id) && (lhs.state == rhs.state); -} - -bool operator<(const BlockId& lhs, const BlockId &rhs) { - if (lhs.id < rhs.id) - return true; - return lhs.state < rhs.state; -} - std::pair<std::string, std::string> TransformBlockIdToBlockStateName(BlockId blockId) { switch (blockId.id) { case 1: { |