aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/include/ETerrainElements.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/include/ETerrainElements.h
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/include/ETerrainElements.h')
-rw-r--r--libraries/irrlicht-1.8/include/ETerrainElements.h72
1 files changed, 36 insertions, 36 deletions
diff --git a/libraries/irrlicht-1.8/include/ETerrainElements.h b/libraries/irrlicht-1.8/include/ETerrainElements.h
index 5bb48c0..b09ac39 100644
--- a/libraries/irrlicht-1.8/include/ETerrainElements.h
+++ b/libraries/irrlicht-1.8/include/ETerrainElements.h
@@ -1,36 +1,36 @@
1// Copyright (C) 2002-2012 Nikolaus Gebhardt 1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine". 2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in irrlicht.h 3// For conditions of distribution and use, see copyright notice in irrlicht.h
4 4
5#ifndef __E_TERRAIN_ELEMENTS_H__ 5#ifndef __E_TERRAIN_ELEMENTS_H__
6#define __E_TERRAIN_ELEMENTS_H__ 6#define __E_TERRAIN_ELEMENTS_H__
7 7
8namespace irr 8namespace irr
9{ 9{
10namespace scene 10namespace scene
11{ 11{
12 12
13 //! enumeration for patch sizes specifying the size of patches in the TerrainSceneNode 13 //! enumeration for patch sizes specifying the size of patches in the TerrainSceneNode
14 enum E_TERRAIN_PATCH_SIZE 14 enum E_TERRAIN_PATCH_SIZE
15 { 15 {
16 //! patch size of 9, at most, use 4 levels of detail with this patch size. 16 //! patch size of 9, at most, use 4 levels of detail with this patch size.
17 ETPS_9 = 9, 17 ETPS_9 = 9,
18 18
19 //! patch size of 17, at most, use 5 levels of detail with this patch size. 19 //! patch size of 17, at most, use 5 levels of detail with this patch size.
20 ETPS_17 = 17, 20 ETPS_17 = 17,
21 21
22 //! patch size of 33, at most, use 6 levels of detail with this patch size. 22 //! patch size of 33, at most, use 6 levels of detail with this patch size.
23 ETPS_33 = 33, 23 ETPS_33 = 33,
24 24
25 //! patch size of 65, at most, use 7 levels of detail with this patch size. 25 //! patch size of 65, at most, use 7 levels of detail with this patch size.
26 ETPS_65 = 65, 26 ETPS_65 = 65,
27 27
28 //! patch size of 129, at most, use 8 levels of detail with this patch size. 28 //! patch size of 129, at most, use 8 levels of detail with this patch size.
29 ETPS_129 = 129 29 ETPS_129 = 129
30 }; 30 };
31 31
32} // end namespace scene 32} // end namespace scene
33} // end namespace irr 33} // end namespace irr
34 34
35#endif 35#endif
36 36