diff options
Diffstat (limited to 'code/Block.cpp')
-rw-r--r-- | code/Block.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/code/Block.cpp b/code/Block.cpp new file mode 100644 index 0000000..64e5330 --- /dev/null +++ b/code/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) {} |