1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
XFXFramework/include/Graphics/ModelEffectCollection.h
Tom Lint c56db35373 Added some ContentTypeReaders
Added xnbbuild project skeleton
Added Model and supporting classes
Updated files
2013-08-11 22:41:39 +02:00

33 lines
904 B
C++

/*****************************************************************************
* 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 <System/Collections/ObjectModel/ReadOnlyCollection.h>
using namespace System::Collections::ObjectModel;
namespace XFX
{
namespace Graphics
{
/**
* Represents a collection of effects associated with a model.
*/
class ModelEffectCollection : public ReadOnlyCollection<Effect*>
{
private:
friend class Model;
ModelEffectCollection(IList<Effect*>* list);
};
}
}
#endif //_XFX_GRAPHICS_MODELEFFECTCOLLECTION_