dcomndr.h 597 B

123456789101112131415161718192021
  1. //***************************************************************************
  2. //
  3. // dcomndr.h -- File contains the Commander Definition
  4. //
  5. // MechCommander 2
  6. //
  7. //---------------------------------------------------------------------------//
  8. // Copyright (C) Microsoft Corporation. All rights reserved. //
  9. //===========================================================================//
  10. #ifndef DCOMNDR_H
  11. #define DCOMNDR_H
  12. class Commander;
  13. typedef Commander* CommanderPtr;
  14. #endif
  15. //***************************************************************************