1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
XFXFramework/include/Graphics/ModelMeshPartCollection.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

28 lines
510 B
C++

#ifndef _XFX_GRAPHICS_MODELMESHPARTCOLLECTION_
#define _XFX_GRAPHICS_MODELMESHPARTCOLLECTION_
#include "ModelMeshPart.h"
#include <System/Collections/ObjectModel/ReadOnlyCollection.h>
using namespace System::Collections::ObjectModel;
namespace XFX
{
namespace Graphics
{
/**
*
*/
class ModelMeshPartCollection : public ReadOnlyCollection<ModelMeshPart>
{
private:
ModelMeshPartCollection(IList<ModelMeshPart> list);
public:
};
}
}
#endif //_XFX_GRAPHICS_MODELMESHPARTCOLLECTION_