dquad.h 913 B

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