DGVEHICL.H 805 B

12345678910111213141516171819202122
  1. //******************************************************************************************
  2. // dgvehicl.h - This file contains the Ground Vehicle Class header definitions
  3. //
  4. //---------------------------------------------------------------------------//
  5. // Copyright (C) Microsoft Corporation. All rights reserved. //
  6. //===========================================================================//
  7. #ifndef DGVEHICL_H
  8. #define DGVEHICL_H
  9. //------------------------------------------------------------------------------
  10. // class Definitions
  11. class GroundVehicleType;
  12. typedef GroundVehicleType* GroundVehicleTypePtr;
  13. class GroundVehicle;
  14. typedef GroundVehicle* GroundVehiclePtr;
  15. //------------------------------------------------------------------------------
  16. #endif