summaryrefslogtreecommitdiff
path: root/src/entity.h
diff options
context:
space:
mode:
authorDrNuget <drnuget@outlook.com>2025-03-03 18:38:18 +0200
committerDrNuget <drnuget@outlook.com>2025-03-03 18:38:18 +0200
commit23dac85d2f600f0073e77bf83f4a544f3a087416 (patch)
tree76fbaa200140036473c3b9bacace389c14bdcd25 /src/entity.h
let the madness begin
Diffstat (limited to 'src/entity.h')
-rw-r--r--src/entity.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/entity.h b/src/entity.h
new file mode 100644
index 0000000..01705b1
--- /dev/null
+++ b/src/entity.h
@@ -0,0 +1,12 @@
+#ifndef ENTTIY_H
+#define ENTITY_H
+#include <raylib.h>
+
+typedef struct hitbox {
+ Vector3* vertices;
+ int num_vertices;
+} Hitbox;
+
+Hitbox createHitbox(Vector3* vertices);
+
+#endif