summaryrefslogtreecommitdiffstats
path: root/old/world/Block.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'old/world/Block.cpp')
-rw-r--r--old/world/Block.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/old/world/Block.cpp b/old/world/Block.cpp
new file mode 100644
index 0000000..e88068a
--- /dev/null
+++ b/old/world/Block.cpp
@@ -0,0 +1,17 @@
+#include "Block.hpp"
+
+Block::~Block() {}
+
+Block::Block(unsigned short id, unsigned char state) : id(id), state(state) {}
+
+Block::Block() : id(0), state(0) {}
+
+bool operator<(const Block &lhs, const Block &rhs) {
+ if (lhs.id < rhs.id)
+ return true;
+ if (lhs.id == rhs.id) {
+ if (lhs.state != rhs.state)
+ return lhs.state < rhs.state;
+ }
+ return false;
+}