voxel-engine/include/block.hpp

12 lines
116 B
C++

#ifndef BLOCKS_H
#define BLOCKS_H
enum class Block{
NULLBLK,
AIR,
STONE,
DIRT,
GRASS
};
#endif