diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-21 16:17:26 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-21 16:18:15 +1000 |
commit | 774fc54355abe70a1ba045ade99649ba0e98c930 (patch) | |
tree | e8c4f07b18d9b716446347797e3bc59c2d66bec2 /include | |
parent | 47465948f2a5a85d0882ff116fce095f401d69c1 (diff) |
start adding rust bindgen
Diffstat (limited to 'include')
-rw-r--r-- | include/amalgamation.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/include/amalgamation.h b/include/amalgamation.h index fec3ebb..03e1c95 100644 --- a/include/amalgamation.h +++ b/include/amalgamation.h @@ -1,2 +1,18 @@ // TODO: Create a SQLite-like amalgamation header to include the whole -// API with one include and link the compiled code.
\ No newline at end of file +// API with one include and link the compiled code. + +#define CEL_PLATFORM_WINDOWS + +#include "defines.h" +#define c_static_inline // remove inlined functions so we can generate bindings + +#include "core.h" +#include "render.h" +#include "render_scene.h" +#include "ral.h" +#include "input.h" +#include "primitives.h" +#include "maths_types.h" +#include "maths.h" +#include "skybox.h" +#include "shadows.h"
\ No newline at end of file |