1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
XFXFramework/src/libXFX/ModelReader.h

28 lines
725 B
C
Raw Normal View History

/*****************************************************************************
* ModelReader.h *
* *
* XFX::Content::ModelReader class definition file *
* Copyright (c) XFX Team. All Rights Reserved *
*****************************************************************************/
#ifndef _XFX_CONTENT_MODELREADER_
#define _XFX_CONTENT_MODELREADER_
#include <Content/ContentTypeReader.h>
#include <Graphics/Model.h>
using namespace XFX::Graphics;
namespace XFX
{
namespace Content
{
class ModelReader : public ContentTypeReader<Model>
{
public:
Model* Read(ContentReader * const input, Model* existingInstance);
};
}
}
#endif //_XFX_CONTENT_MODELREADER_