dgroup.h 760 B

12345678910111213141516171819202122232425
  1. //***************************************************************************
  2. //
  3. // dgroup.h -- File contains the MoverGroup Definition
  4. //
  5. // MechCommander 2
  6. //
  7. //---------------------------------------------------------------------------//
  8. // Copyright (C) Microsoft Corporation. All rights reserved. //
  9. //===========================================================================//
  10. #ifndef DGROUP_H
  11. #define DGROUP_H
  12. //---------------------------------------------------------------------------
  13. class MoverGroup;
  14. typedef MoverGroup* MoverGroupPtr;
  15. //---------------------------------------------------------------------------
  16. #endif
  17. //***************************************************************************