From c62e2cd49649109f0135e56ee8add0dab2254d01 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Sun, 20 Aug 2017 20:21:29 +0500 Subject: 2017-08-20 --- src/Block.hpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/Block.hpp') diff --git a/src/Block.hpp b/src/Block.hpp index 2f823fe..367e559 100644 --- a/src/Block.hpp +++ b/src/Block.hpp @@ -3,13 +3,12 @@ struct Block { Block(); - Block(unsigned short id, unsigned char state); + 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; -}; - -bool operator<(const Block &lhs, const Block &rhs); \ No newline at end of file + unsigned char light : 4; + unsigned char sky : 4; +}; \ No newline at end of file -- cgit v1.2.3