Dvertex.h 905 B

123456789101112131415161718192021222324252627
  1. //---------------------------------------------------------------------------
  2. //
  3. // DVertex.h -- File contains class definitions for the Terrain Vertices
  4. //
  5. // MechCommander 2
  6. //
  7. //---------------------------------------------------------------------------//
  8. // Copyright (C) Microsoft Corporation. All rights reserved. //
  9. //===========================================================================//
  10. #ifndef DVERTEX_H
  11. #define DVERTEX_H
  12. //---------------------------------------------------------------------------
  13. // Include Files
  14. //---------------------------------------------------------------------------
  15. // Macro Definitions
  16. //---------------------------------------------------------------------------
  17. // Class Definitions
  18. class Vertex;
  19. typedef Vertex *VertexPtr;
  20. //---------------------------------------------------------------------------
  21. #endif