Updated asteroids and mines. Updated ship class names. Added initial ship muzzle logic.

This commit is contained in:
2026-01-20 00:40:03 -05:00
parent e402c498d6
commit c1124a784d
15 changed files with 221 additions and 97 deletions

View File

@@ -16,5 +16,6 @@ public class AsteroidVariantB : Asteroid
BoundBox = new(0, 0, Width, Height);
YVelocity = 2;
XVelocity = 0;
RotationSpeed = 4f;
}
}

View File

@@ -16,5 +16,6 @@ public class AsteroidVariantD : Asteroid
BoundBox = new(0, 0, Width, Height);
YVelocity = .5f;
XVelocity = 0;
RotationSpeed = .5f;
}
}