summaryrefslogblamecommitdiffstats
path: root/src/Block.cpp
blob: 303909bbbdaa7e61da84a840a56576e1dc42afd8 (plain) (tree)
1
2
3
4
5
6
7
8



                    


                                                          
 



                                                          



                                                        
 
#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);
}

bool operator<(const BlockId& lhs, const BlockId &rhs) {
    return (lhs.id < rhs.id);
}