Danbias/Code/OysterGraphics/Model/ModelInfo.h

25 lines
337 B
C
Raw Normal View History

#pragma once
#ifndef MODELINFO_h
#define MODELINFO_h
#include "..\Core\Core.h"
namespace Oyster
{
2013-11-20 10:22:01 +01:00
namespace Graphics
{
namespace Model
{
2013-11-20 10:22:01 +01:00
struct ModelInfo
{
std::vector<ID3D11ShaderResourceView*> Material;
Core::Buffer *Vertices,*Indecies;
2013-11-20 10:22:01 +01:00
bool Indexed;
2014-01-17 08:51:12 +01:00
int VertexCount, IndexCount;
2013-11-20 10:22:01 +01:00
};
}
}
};
#endif