blob: 4c907d607f4c0a00b6da4dc7fa43ee453a566780 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include "Block.hpp"
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) {}
|