DunGen  1.1
Dungeongenerator library for Irrlicht
ArchitectCommon.h
1 // Copyright (C) 2011-2014 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 ARCHITECTCOMMON_H
6 #define ARCHITECTCOMMON_H
7 
8 namespace DunGen
9 {
11  struct EDirection
12  {
13  enum Enum
14  {
15  X_POSITIVE = 0,
16  X_NEGATIVE = 1,
17  Z_POSITIVE = 2,
18  Z_NEGATIVE = 3,
19  };
20  };
21 }
22 
23 #endif
Positive Z direction.
Definition: ArchitectCommon.h:17
Enum
Definition: ArchitectCommon.h:13
Negative X direction.
Definition: ArchitectCommon.h:16
Negative Z direction.
Definition: ArchitectCommon.h:18
Directions for docking corridors on the cave. Tells the direction from the view of the corridor towar...
Definition: ArchitectCommon.h:11
Positive X direction.
Definition: ArchitectCommon.h:15