From 4d7b1da29e0957ac798ee8e6da8288cbd4ae5c79 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Thu, 18 May 2017 19:03:05 +0500 Subject: 2017-05-18 --- src/world/Block.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/world/Block.hpp (limited to 'src/world/Block.hpp') diff --git a/src/world/Block.hpp b/src/world/Block.hpp new file mode 100644 index 0000000..7c780c1 --- /dev/null +++ b/src/world/Block.hpp @@ -0,0 +1,15 @@ +#pragma once + +struct Block { + Block(unsigned short idAndState, unsigned char light); + + Block(unsigned short id, unsigned char state, unsigned char light); + + Block(); + + ~Block(); + + unsigned short id:13; + unsigned char state:4; + unsigned char light:4; +}; \ No newline at end of file -- cgit v1.2.3