Dappear.h 981 B

12345678910111213141516171819202122232425262728
  1. //---------------------------------------------------------------------------
  2. //
  3. // DAppear.h -- File contains the Basic Game Appearance Definition
  4. //
  5. //---------------------------------------------------------------------------//
  6. // Copyright (C) Microsoft Corporation. All rights reserved. //
  7. //===========================================================================//
  8. #ifndef DAPPEAR_H
  9. #define DAPPEAR_H
  10. //---------------------------------------------------------------------------
  11. // Include Files
  12. //---------------------------------------------------------------------------
  13. // Macro definitions
  14. #ifndef NO_ERR
  15. #define NO_ERR 0
  16. #endif
  17. //---------------------------------------------------------------------------
  18. // Class definitions
  19. class Appearance;
  20. typedef Appearance *AppearancePtr;
  21. class GameObject;
  22. typedef GameObject *GameObjectPtr;
  23. //---------------------------------------------------------------------------
  24. #endif