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