1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef PROJECTILE_H #define PROJECTILE_H #include <raylib.h> // FIXME: Unused class typedef struct Projectile { int posX, posY; Vector2 dir; float radius; float damage; } Projectile; #endif /* PROJECTILE_H */