Updated asteriods, mines, and explosions.

This commit is contained in:
2026-01-18 22:11:20 -05:00
parent 8e0a68efdf
commit e402c498d6
21 changed files with 338 additions and 102 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.Xna.Framework.Graphics;
namespace AlienAttack.MonoGame.Things.Explosions;
public class MineExplosion : Explosion
{
public MineExplosion(int x, int y, float xVel, float yVel) : base(x, y, xVel, yVel)
{
Scale = new(2, 2);
}
}