//*************************************************************************** // // dturret.h -- File contains the Turret Class Definition // // MechCommander 2 // //---------------------------------------------------------------------------// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #ifndef DTURRET_H #define DTURRET_H //--------------------------------------------------------------------------- class TurretType; typedef TurretType* TurretTypePtr; class Turret; typedef Turret* TurretPtr; //*************************************************************************** #endif