//--------------------------------------------------------------------------- // // Dterrobj.h -- File contains the Misc Terrain Object Definition // // MechCommander 2 // //---------------------------------------------------------------------------// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #ifndef DTERROBJ_H #define DTERROBJ_H #define BRIDGEY 0x05 #define FORESTY 0x06 #define WALLY 0x07 #define MEDIUM_WALL 0x08 #define LIGHT_WALL 0x09 class TerrainObjectType; typedef TerrainObjectType* TerrainObjectTypePtr; class TerrainObject; typedef TerrainObject* TerrainObjectPtr; //--------------------------------------------------------------------------- #endif