Danbias/Code/OysterGraphics/Definitions/GraphicalDefinition.h

18 lines
275 B
C
Raw Normal View History

2013-11-21 13:50:43 +01:00
#include "..\OysterGraphics\Core\CoreIncludes.h"
#include "OysterMath.h"
namespace Oyster
{
namespace Graphics
{
namespace Definitions
{
struct ObjVertex
{
Oyster::Math::Float3 pos;
Oyster::Math::Float2 uv;
Oyster::Math::Float3 normal;
};
}
}
}