mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 02:07:02 +03:00
24 lines
279 B
C++
24 lines
279 B
C++
/* JSRF Decompilation: XDK/D3D.hpp
|
|
Direct3D8 declarations.
|
|
*/
|
|
|
|
#ifndef D3D_HPP
|
|
#define D3D_HPP
|
|
|
|
#include "Win32.hpp"
|
|
|
|
|
|
typedef DWORD D3DCOLOR;
|
|
|
|
struct D3DVECTOR {
|
|
float x, y, z ;
|
|
};
|
|
struct D3DVECTOR4 {
|
|
float x, y, z, w;
|
|
};
|
|
|
|
struct D3DRECT {
|
|
LONG x1, y1, x2, y2;
|
|
};
|
|
|
|
#endif
|