123456789101112131415161718192021222324252627282930313233 |
- //---------------------------------------------------------------------------
- //
- // Dweaponbolt.h -- File contains the weapon Bolt Object Definition
- //
- // MechCommander 2
- //
- //---------------------------------------------------------------------------//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- #ifndef DWEAPONBOLT_H
- #define DWEAPONBOLT_H
- //---------------------------------------------------------------------------
- // Include Files
- //---------------------------------------------------------------------------
- // Class Definitions
- class WeaponBoltType;
- typedef WeaponBoltType *WeaponBoltTypePtr;
- class WeaponBolt;
- typedef WeaponBolt *WeaponBoltPtr;
- //---------------------------------------------------------------------------
- // Macro Definitions
- //---------------------------------------------------------------------------
- // Enum Definitions
- //---------------------------------------------------------------------------
- #endif
|