mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
12 lines
136 B
C
12 lines
136 B
C
#ifndef D3D9_VECTOR_H
|
|
#define D3D9_VECTOR_H
|
|
|
|
DECLARE_STRUCT(D3DVECTOR);
|
|
|
|
struct D3DVECTOR {
|
|
float x;
|
|
float y;
|
|
float z;
|
|
};
|
|
|
|
#endif
|