#ifndef COLLISIONBOX_H #define COLLISIONBOX_H typedef struct { int x; int y; int width; int height; } CollisionBox; #endif