summaryrefslogtreecommitdiffstats
path: root/src/world/Block.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world/Block.cpp')
-rw-r--r--src/world/Block.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/world/Block.cpp b/src/world/Block.cpp
new file mode 100644
index 0000000..64e5330
--- /dev/null
+++ b/src/world/Block.cpp
@@ -0,0 +1,10 @@
+#include "Block.hpp"
+
+Block::~Block() {}
+
+Block::Block(unsigned short idAndState, unsigned char light) : id(idAndState >> 4), state(idAndState & 0x0F),
+ light(light) {}
+
+Block::Block(unsigned short id, unsigned char state, unsigned char light) : id(id), state(state), light(light) {}
+
+Block::Block() : id(0), state(0), light(0) {}