2024-02-25 13:43:30 +00:00
|
|
|
void attemptToFireRabbitBullet(
|
|
|
|
struct RabbitPosition*,
|
|
|
|
struct RabbitWeaponry*,
|
|
|
|
struct BulletPosition[]
|
|
|
|
);
|
|
|
|
|
|
|
|
void advanceRabbitBullets(
|
|
|
|
struct BulletPosition[],
|
|
|
|
struct RabbitWeaponry*
|
|
|
|
);
|
|
|
|
|
|
|
|
void handleRabbitBulletToEnemyCollisions(
|
|
|
|
struct BulletPosition[],
|
|
|
|
struct EnemyPosition[]
|
|
|
|
);
|
2024-02-25 17:52:42 +00:00
|
|
|
|
|
|
|
void handleRabbitToEnemyCollisions(
|
|
|
|
struct RabbitPosition*,
|
|
|
|
struct EnemyPosition[]
|
|
|
|
);
|