This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
DX11Starter/Vertex.h
2022-04-03 16:05:25 -04:00

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;
};