Constants.h 234 B

12345678910
  1. #pragma once
  2. #define CHUNK_SIZE 16
  3. #define WORLD_HEIGHT 500
  4. #ifdef _DEBUG
  5. # define CHUNK_VISIBILITY_RANGE 2
  6. #else
  7. # define CHUNK_VISIBILITY_RANGE 64
  8. #endif
  9. #define MAX_VIEW_DISTANCE CHUNK_SIZE* CHUNK_VISIBILITY_RANGE