1 2 3 4 5 6 7 8 9 10 11 12
#ifndef ENTTIY_H #define ENTITY_H #include <raylib.h> typedef struct hitbox { Vector3* boxes; int num_boxes; } Hitbox; Hitbox createHitbox(Vector3* vertices); #endif