dmovemgr.h 886 B

123456789101112131415161718192021222324252627282930313233
  1. //***************************************************************************
  2. //
  3. // dmovemgr.h -- Class definitions for the move path manager.
  4. //
  5. // MechCommander 2
  6. //
  7. //---------------------------------------------------------------------------//
  8. // Copyright (C) Microsoft Corporation. All rights reserved. //
  9. //===========================================================================//
  10. #ifndef DMOVEMGR_H
  11. #define DMOVEMGR_H
  12. //***************************************************************************
  13. #define MAX_MOVERS 255 // Should probably equal that in Collision System
  14. typedef struct _PathQueueRec* PathQueueRecPtr;
  15. class MoveMap;
  16. typedef MoveMap* MoveMapPtr;
  17. class MovePathManager;
  18. typedef MovePathManager* MovePathManagerPtr;
  19. #endif
  20. //***************************************************************************