//--------------------------------------------------------------------------- // // DAppear.h -- File contains the Basic Game Appearance Definition // //---------------------------------------------------------------------------// // Copyright (C) Microsoft Corporation. All rights reserved. // //===========================================================================// #ifndef DAPPEAR_H #define DAPPEAR_H //--------------------------------------------------------------------------- // Include Files //--------------------------------------------------------------------------- // Macro definitions #ifndef NO_ERR #define NO_ERR 0 #endif //--------------------------------------------------------------------------- // Class definitions class Appearance; typedef Appearance *AppearancePtr; class GameObject; typedef GameObject *GameObjectPtr; //--------------------------------------------------------------------------- #endif