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

14 lines
No EOL
403 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; // The local position of the vertex
DirectX::XMFLOAT4 Color; // The color of the vertex
};