DunGen  1.0
Dungeongenerator library for Irrlicht
VoxelCaveCommon.h
1 // Copyright (C) 2011-2013 by Maximilian Hönig
2 // This file is part of "DunGen - the Dungeongenerator".
3 // For conditions of distribution and use, see licence.txt provided together with DunGen.
4 
5 #ifndef VOXELCAVECOMMON_H
6 #define VOXELCAVECOMMON_H
7 
8 namespace DunGen
9 {
11  struct SVoxelSpace
12  {
14  static const unsigned int DimX = 512;
16  static const unsigned int DimY = 512;
18  static const unsigned int DimZ = 512;
19 
25  static const unsigned int MinBorder = 3;
26  };
27 }
28 
29 #endif
static const unsigned int DimX
X dimension of the Voxel space.
Definition: VoxelCaveCommon.h:14
static const unsigned int MinBorder
Definition: VoxelCaveCommon.h:25
static const unsigned int DimZ
Z dimension of the Voxel space.
Definition: VoxelCaveCommon.h:18
Parameters for the voxelspace.
Definition: VoxelCaveCommon.h:11
static const unsigned int DimY
Y dimension of the Voxel space.
Definition: VoxelCaveCommon.h:16