voxel-engine/include/block.hpp

12 lines
116 B
C++
Raw Normal View History

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