1#ifndef WORLD_BLOCK_H
2#define WORLD_BLOCK_H
3
4typedef enum {
5 BLOCK_AIR,
6 BLOCK_BRICK,
7 BLOCK_DIRT,
8 BLOCK_STONE,
9
10 BLOCK_LAST
11} BlockType;
12
13#endif /* WORLD_BLOCK_H */
1#ifndef WORLD_BLOCK_H
2#define WORLD_BLOCK_H
3
4typedef enum {
5 BLOCK_AIR,
6 BLOCK_BRICK,
7 BLOCK_DIRT,
8 BLOCK_STONE,
9
10 BLOCK_LAST
11} BlockType;
12
13#endif /* WORLD_BLOCK_H */