00001 // Copyright (C) 2002-2012 Nikolaus Gebhardt 00002 // This file is part of the "Irrlicht Engine". 00003 // For conditions of distribution and use, see copyright notice in irrlicht.h 00004 00005 #ifndef __E_TERRAIN_ELEMENTS_H__ 00006 #define __E_TERRAIN_ELEMENTS_H__ 00007 00008 namespace irr 00009 { 00010 namespace scene 00011 { 00012 00014 enum E_TERRAIN_PATCH_SIZE 00015 { 00017 ETPS_9 = 9, 00018 00020 ETPS_17 = 17, 00021 00023 ETPS_33 = 33, 00024 00026 ETPS_65 = 65, 00027 00029 ETPS_129 = 129 00030 }; 00031 00032 } // end namespace scene 00033 } // end namespace irr 00034 00035 #endif 00036