12345678910111213141516171819202122232425 |
- //***************************************************************************
- //
- // dgroup.h -- File contains the MoverGroup Definition
- //
- // MechCommander 2
- //
- //---------------------------------------------------------------------------//
- // Copyright (C) Microsoft Corporation. All rights reserved. //
- //===========================================================================//
- #ifndef DGROUP_H
- #define DGROUP_H
- //---------------------------------------------------------------------------
- class MoverGroup;
- typedef MoverGroup* MoverGroupPtr;
- //---------------------------------------------------------------------------
- #endif
- //***************************************************************************
|