summaryrefslogtreecommitdiffstats
path: root/src/world/Block.hpp
blob: 7c780c13057363099c6bcb3cdcf172b33fcac3e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
};