/***************************************************************************** * ModelEffectCollection.h * * * * XFX::Graphics::ModelEffectCollection class definition file * * Copyright (c) XFX Team. All Rights Reserved * *****************************************************************************/ #ifndef _XFX_GRAPHICS_MODELEFFECTCOLLECTION_ #define _XFX_GRAPHICS_MODELEFFECTCOLLECTION_ #include "Effect.h" #include using namespace System::Collections::ObjectModel; namespace XFX { namespace Graphics { /** * Represents a collection of effects associated with a model. */ class ModelEffectCollection : public ReadOnlyCollection { private: friend class Model; ModelEffectCollection(IList* list); }; } } #endif //_XFX_GRAPHICS_MODELEFFECTCOLLECTION_