// Enemies ship structure typedef struct { int x; int y; int shield; int points; int dmg; int mov_x; int mov_y; unsigned char *sprite; struct Opponent *prev; } Opponent;