mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
28 lines
510 B
C++
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_
|