12 lines
116 B
C++
12 lines
116 B
C++
|
#ifndef BLOCKS_H
|
||
|
#define BLOCKS_H
|
||
|
|
||
|
enum class Block{
|
||
|
NULLBLK,
|
||
|
AIR,
|
||
|
STONE,
|
||
|
DIRT,
|
||
|
GRASS
|
||
|
};
|
||
|
|
||
|
#endif
|