dweaponbolt.h 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. //---------------------------------------------------------------------------
  2. //
  3. // Dweaponbolt.h -- File contains the weapon Bolt Object Definition
  4. //
  5. // MechCommander 2
  6. //
  7. //---------------------------------------------------------------------------//
  8. // Copyright (C) Microsoft Corporation. All rights reserved. //
  9. //===========================================================================//
  10. #ifndef DWEAPONBOLT_H
  11. #define DWEAPONBOLT_H
  12. //---------------------------------------------------------------------------
  13. // Include Files
  14. //---------------------------------------------------------------------------
  15. // Class Definitions
  16. class WeaponBoltType;
  17. typedef WeaponBoltType *WeaponBoltTypePtr;
  18. class WeaponBolt;
  19. typedef WeaponBolt *WeaponBoltPtr;
  20. //---------------------------------------------------------------------------
  21. // Macro Definitions
  22. //---------------------------------------------------------------------------
  23. // Enum Definitions
  24. //---------------------------------------------------------------------------
  25. #endif