Add delink POSIX script

Also reworked the directory structure a little.
This commit is contained in:
KeybadeBlox 2025-12-14 22:53:33 -05:00
parent 7e1785e466
commit fe20d64d27
14 changed files with 81 additions and 14 deletions

16
src/D3D.hpp Normal file
View file

@ -0,0 +1,16 @@
/* JSRF Decompilation: 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; };
#endif