chore(profile): a lot of work having to do with graphics

This commit is contained in:
phaneron 2025-06-04 17:42:08 -04:00
parent ebf88595d9
commit 2363e04c76
153 changed files with 2402 additions and 566 deletions

View file

@ -0,0 +1,16 @@
#ifndef D3D9_MATERIAL_H
#define D3D9_MATERIAL_H
DECLARE_STRUCT(D3DMATERIAL9);
#include "external/d3d9/colorvalue.h"
struct D3DMATERIAL9 {
D3DCOLORVALUE Diffuse;
D3DCOLORVALUE Ambient;
D3DCOLORVALUE Specular;
D3DCOLORVALUE Emissive;
float Power;
};
#endif