Added more sound effects. Added initial weapon muzzle fire logic.

This commit is contained in:
2026-01-02 00:54:09 -05:00
parent c4a98ce03d
commit df45203227
43 changed files with 459 additions and 30 deletions

View File

@@ -6,9 +6,12 @@ namespace AlienAttack.MonoGame.Things.Bullets;
internal class MinigunBulletSmall : Bullet
{
public const int Width = 11;
public const int Height = 21;
public MinigunBulletSmall(float x, float y, float xVel, float yVel, Sprite owner) : base(x, y, xVel, yVel, owner)
{
BoundBox = new(0, 0, 7, 17);
BoundBox = new(0, 0, Width, Height);
Damage = 1;
}