SyndicatQuebecoisdelaConstr.../SQCSim2021/define.h
2021-09-17 10:08:14 -04:00

18 lines
218 B
C++

#ifndef DEFINE_H__
#define DEFINE_H__
#include <string>
#include <iostream>
#define CHUNK_SIZE_X 16
#define CHUNK_SIZE_Y 128
#define CHUNK_SIZE_Z 16
enum BlockType {
BTYPE_AIR,
BTYPE_DIRT,
BTYPE_GRASS
};
#endif