summaryrefslogtreecommitdiff
path: root/bindgen/ocaml/bindings/celeritas.h
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-27 16:25:27 +1100
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-27 16:25:27 +1100
commitc2812d1a79a1d790b2c549abdfe9344d4fb4f4d2 (patch)
tree58cb7b3e05b8327f6b2395ee0df38a0d4b674af0 /bindgen/ocaml/bindings/celeritas.h
parent7577b6d51c5180ec23f93cec79a5c77e54130558 (diff)
removing old ocaml glue code
Diffstat (limited to 'bindgen/ocaml/bindings/celeritas.h')
-rw-r--r--bindgen/ocaml/bindings/celeritas.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/bindgen/ocaml/bindings/celeritas.h b/bindgen/ocaml/bindings/celeritas.h
deleted file mode 100644
index fce4d62..0000000
--- a/bindgen/ocaml/bindings/celeritas.h
+++ /dev/null
@@ -1,21 +0,0 @@
-/* The Goal of this file is to test ocaml-bindgen on it to start moving development over into OCaml */
-
-// #include <stdbool.h>
-// #include <stdint.h>
-
-typedef struct Core Core;
-typedef struct GLFWwindow GLFWwindow;
-
-Core* get_global_core();
-void core_Bringup(void* optional_window);
-
-void frame_Begin();
-void frame_Draw();
-void frame_End();
-
-
-struct Vec2 { float x; float y; };
-typedef struct Vec3 { float x; float y; float z; } Vec3;
-struct Vec4 { float x; float y; float z; float w; };
-
-Vec3 vec3_add(Vec3 a, Vec3 b); \ No newline at end of file