#ifndef ENTTIY_H #define ENTITY_H #include typedef struct hitbox { Vector3* vertices; int num_vertices; } Hitbox; Hitbox createHitbox(Vector3* vertices); #endif