Added more sound effects. Added initial weapon muzzle fire logic.
This commit is contained in:
@@ -6,9 +6,12 @@ namespace AlienAttack.MonoGame.Things.Bullets;
|
||||
|
||||
internal class MinigunBulletMedium : Bullet
|
||||
{
|
||||
public const int Width = 11;
|
||||
public const int Height = 21;
|
||||
|
||||
public MinigunBulletMedium(float x, float y, float xVel, float yVel, Sprite owner) : base(x, y, xVel, yVel, owner)
|
||||
{
|
||||
BoundBox = new(0, 0, 11, 21);
|
||||
BoundBox = new(0, 0, Width, Height);
|
||||
Damage = 2;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user