123456789101112131415161718192021222324 |
- //***************************************************************************
- //
- // 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
|