2013-11-06 22:52:00 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef MODELINFO_h
|
|
|
|
#define MODELINFO_h
|
|
|
|
|
|
|
|
//#include "../Engine.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "..\Core\CoreIncludes.h"
|
|
|
|
#include "..\Core\Buffer.h"
|
|
|
|
//#include "OysterMath.h"
|
|
|
|
//#include "ICollideable.h"
|
|
|
|
|
|
|
|
using namespace Oyster::Math;
|
|
|
|
|
|
|
|
namespace Oyster
|
|
|
|
{
|
2013-11-20 10:22:01 +01:00
|
|
|
namespace Graphics
|
2013-11-06 22:52:00 +01:00
|
|
|
{
|
2013-11-20 10:22:01 +01:00
|
|
|
namespace Render
|
2013-11-06 22:52:00 +01:00
|
|
|
{
|
2013-11-20 10:22:01 +01:00
|
|
|
struct ModelInfo
|
|
|
|
{
|
|
|
|
std::vector<ID3D11ShaderResourceView*> Material;
|
|
|
|
Buffer Vertices,Indecies;
|
|
|
|
bool Indexed;
|
|
|
|
int VertexCount;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2013-11-06 22:52:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|