blob: 840dbcfd8ce0b07a5c204bf9ca715236879ea096 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#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) {}
bool operator==(const BlockId& lhs, const BlockId &rhs) {
return (lhs.id == rhs.id) && (lhs.state == rhs.state);
}
|