123456789101112131415161718192021222324252627 |
- //---------------------------------------------------------------------------
- //
- // DVertex.h -- File contains class definitions for the Terrain Vertices
- //
- // MechCommander 2
- //
- //---------------------------------------------------------------------------//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- #ifndef DVERTEX_H
- #define DVERTEX_H
- //---------------------------------------------------------------------------
- // Include Files
- //---------------------------------------------------------------------------
- // Macro Definitions
- //---------------------------------------------------------------------------
- // Class Definitions
- class Vertex;
- typedef Vertex *VertexPtr;
- //---------------------------------------------------------------------------
- #endif
|