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,20 @@
using AlienAttack.MonoGame.Textures;
namespace AlienAttack.MonoGame.Things.Asteroids;
public class AsteroidVariantB : Asteroid
{
public const int Width = 26;
public const int Height = 28;
protected override string TextureName => TextureNames.Asteriods.VariantB;
protected override int MaxHealth => 4;
public AsteroidVariantB(int x, int y) : base(x, y)
{
Origin = new(Width / 2, Height / 2);
BoundBox = new(0, 0, Width, Height);
YVelocity = 2;
XVelocity = 0;
}
}