public static void ProjectileEnemyCollision(IProjectile proj, IEnemy enemy) {
     if (!proj.CanHarmEnemies()) return;
     enemy.Kill();
     proj.Delete();
     if (proj is Bullet) SoundManager.PlayHitSound();
     else SoundManager.PlayKickSound();
 }