blob: c3dfcec4927fb282409e4acb804ab255e90611de (
plain) (
tree)
|
|
#pragma once
struct Block {
Block();
Block(unsigned short id, unsigned char state, unsigned char light, unsigned char sky);
~Block();
unsigned short id : 13;
unsigned char state : 4;
unsigned char light : 4;
unsigned char sky : 4;
};
struct BlockId {
unsigned short id : 13;
unsigned char state : 4;
};
bool operator==(const BlockId& lhs, const BlockId &rhs);
bool operator<(const BlockId& lhs, const BlockId &rhs);
|