voxel-engine/include/block.hpp

15 lines
139 B
C++

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