objstatus.h 626 B

12345678910111213141516171819202122
  1. //-----------------------------------------------------------------------------
  2. // MechCommander 2
  3. //
  4. //---------------------------------------------------------------------------//
  5. // Copyright (C) Microsoft Corporation. All rights reserved. //
  6. //===========================================================================//
  7. #ifndef OBJSTATUS_H
  8. #define OBJSTATUS_H
  9. typedef enum
  10. {
  11. OBJECT_STATUS_NORMAL,
  12. OBJECT_STATUS_DISABLED,
  13. OBJECT_STATUS_DESTROYED,
  14. OBJECT_STATUS_STARTING_UP,
  15. OBJECT_STATUS_SHUTTING_DOWN,
  16. OBJECT_STATUS_SHUTDOWN,
  17. NUM_OBJECT_STATUSES
  18. } ObjectStatusType;
  19. #endif