dmech.h 759 B

123456789101112131415161718192021222324
  1. //***************************************************************************
  2. //
  3. // dmech.h - This file contains the BattleMech Class header definitions
  4. //
  5. // MechCommander 2
  6. //
  7. //---------------------------------------------------------------------------//
  8. // Copyright (C) Microsoft Corporation. All rights reserved. //
  9. //===========================================================================//
  10. #ifndef DMECH_H
  11. #define DMECH_H
  12. //---------------------------------------------------------------------------
  13. class BattleMechType;
  14. typedef BattleMechType *BattleMechTypePtr;
  15. class BattleMech;
  16. typedef BattleMech *BattleMechPtr;
  17. //***************************************************************************
  18. #endif