//*************************************************************************** // // dmech.h - This file contains the BattleMech Class header definitions // // MechCommander 2 // //---------------------------------------------------------------------------// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #ifndef DMECH_H #define DMECH_H //--------------------------------------------------------------------------- class BattleMechType; typedef BattleMechType *BattleMechTypePtr; class BattleMech; typedef BattleMech *BattleMechPtr; //*************************************************************************** #endif