#ifndef PROJECTILE_H #define PROJECTILE_H #include typedef struct Projectile { int posX, posY; Vector2 dir; float radius; float damage; } Projectile; #endif /* PROJECTILE_H */