12345678910111213141516171819202122 |
- //******************************************************************************************
- // dgvehicl.h - This file contains the Ground Vehicle Class header definitions
- //
- //---------------------------------------------------------------------------//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- #ifndef DGVEHICL_H
- #define DGVEHICL_H
- //------------------------------------------------------------------------------
- // class Definitions
- class GroundVehicleType;
- typedef GroundVehicleType* GroundVehicleTypePtr;
- class GroundVehicle;
- typedef GroundVehicle* GroundVehiclePtr;
- //------------------------------------------------------------------------------
- #endif
|