create buffer struct

This commit is contained in:
lightling 2022-01-23 13:45:12 -05:00
parent 287250e29c
commit 2f29e3e400
Signed by: lightling
GPG key ID: 016F11E0AA296B67

9
BufferStructs.h Normal file
View file

@ -0,0 +1,9 @@
#pragma once
#include <DirectXMath.h>
struct VertexShaderExternalData
{
DirectX::XMFLOAT4 colorTint;
DirectX::XMFLOAT3 offset;
};