16 lines
No EOL
381 B
C
16 lines
No EOL
381 B
C
#pragma once
|
|
|
|
#include <DirectXMath.h>
|
|
|
|
// --------------------------------------------------------
|
|
// A custom vertex definition
|
|
//
|
|
// You will eventually ADD TO this, and/or make more of these!
|
|
// --------------------------------------------------------
|
|
struct Vertex
|
|
{
|
|
DirectX::XMFLOAT3 Position;
|
|
DirectX::XMFLOAT3 Normal;
|
|
DirectX::XMFLOAT3 Tangent;
|
|
DirectX::XMFLOAT2 UV;
|
|
}; |